/
opt
/
imunify360
/
venv
/
lib
/
python3.11
/
site-packages
/
setuptools
/
/opt/imunify360/venv/lib/python3.11/site-packages/setuptools
mkdir
upload
Name
Size
Mode
Actions
command/
-
0755
rm
config/
-
0755
rm
extern/
-
0755
rm
_distutils/
-
0755
rm
_vendor/
-
0755
rm
__pycache__/
-
0755
rm
archive_util.py
7331
0644
edit
dl
rm
build_meta.py
18670
0644
edit
dl
rm
cli-32.exe
11776
0644
edit
dl
rm
cli-64.exe
14336
0644
edit
dl
rm
cli-arm64.exe
13824
0644
edit
dl
rm
cli.exe
11776
0644
edit
dl
rm
depends.py
5582
0644
edit
dl
rm
dep_util.py
659
0644
edit
dl
rm
discovery.py
21147
0644
edit
dl
rm
dist.py
37205
0644
edit
dl
rm
errors.py
2669
0644
edit
dl
rm
extension.py
5591
0644
edit
dl
rm
glob.py
4868
0644
edit
dl
rm
gui-32.exe
11776
0644
edit
dl
rm
gui-64.exe
14336
0644
edit
dl
rm
gui-arm64.exe
13824
0644
edit
dl
rm
gui.exe
11776
0644
edit
dl
rm
installer.py
4989
0644
edit
dl
rm
launch.py
812
0644
edit
dl
rm
logging.py
1239
0644
edit
dl
rm
modified.py
190
0644
edit
dl
rm
monkey.py
4783
0644
edit
dl
rm
msvc.py
47422
0644
edit
dl
rm
namespaces.py
3073
0644
edit
dl
rm
package_index.py
38345
0644
edit
dl
rm
py312compat.py
330
0644
edit
dl
rm
sandbox.py
14349
0644
edit
dl
rm
script (dev).tmpl
218
0644
edit
dl
rm
script.tmpl
138
0644
edit
dl
rm
unicode_utils.py
941
0644
edit
dl
rm
version.py
161
0644
edit
dl
rm
warnings.py
3697
0644
edit
dl
rm
wheel.py
8628
0644
edit
dl
rm
windows_support.py
720
0644
edit
dl
rm
_core_metadata.py
8921
0644
edit
dl
rm
_entry_points.py
2235
0644
edit
dl
rm
_imp.py
2433
0644
edit
dl
rm
_importlib.py
1468
0644
edit
dl
rm
_itertools.py
675
0644
edit
dl
rm
_normalization.py
4214
0644
edit
dl
rm
_path.py
1056
0644
edit
dl
rm
_reqs.py
1120
0644
edit
dl
rm
__init__.py
9214
0644
edit
dl
rm
Edit:
/opt/imunify360/venv/lib/python3.11/site-packages/setuptools/errors.py
(2669B)
"""setuptools.errors Provides exceptions used by setuptools modules. """ from distutils import errors as _distutils_errors # Re-export errors from distutils to facilitate the migration to PEP632 ByteCompileError = _distutils_errors.DistutilsByteCompileError CCompilerError = _distutils_errors.CCompilerError ClassError = _distutils_errors.DistutilsClassError CompileError = _distutils_errors.CompileError ExecError = _distutils_errors.DistutilsExecError FileError = _distutils_errors.DistutilsFileError InternalError = _distutils_errors.DistutilsInternalError LibError = _distutils_errors.LibError LinkError = _distutils_errors.LinkError ModuleError = _distutils_errors.DistutilsModuleError OptionError = _distutils_errors.DistutilsOptionError PlatformError = _distutils_errors.DistutilsPlatformError PreprocessError = _distutils_errors.PreprocessError SetupError = _distutils_errors.DistutilsSetupError TemplateError = _distutils_errors.DistutilsTemplateError UnknownFileError = _distutils_errors.UnknownFileError # The root error class in the hierarchy BaseError = _distutils_errors.DistutilsError class InvalidConfigError(OptionError): """Error used for invalid configurations.""" class RemovedConfigError(OptionError): """Error used for configurations that were deprecated and removed.""" class RemovedCommandError(BaseError, RuntimeError): """Error used for commands that have been removed in setuptools. Since ``setuptools`` is built on ``distutils``, simply removing a command from ``setuptools`` will make the behavior fall back to ``distutils``; this error is raised if a command exists in ``distutils`` but has been actively removed in ``setuptools``. """ class PackageDiscoveryError(BaseError, RuntimeError): """Impossible to perform automatic discovery of packages and/or modules. The current project layout or given discovery options can lead to problems when scanning the project directory. Setuptools might also refuse to complete auto-discovery if an error prone condition is detected (e.g. when a project is organised as a flat-layout but contains multiple directories that can be taken as top-level packages inside a single distribution [*]_). In these situations the users are encouraged to be explicit about which packages to include or to make the discovery parameters more specific. .. [*] Since multi-package distributions are uncommon it is very likely that the developers did not intend for all the directories to be packaged, and are just leaving auxiliary code in the repository top-level, such as maintenance-related scripts. """
Save
cmd:
run