OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
hps
/
faces
/
.venv
/
lib
/
python3.10
/
site-packages
/
setuptools
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/26/2024 01:25:21 PM
rwxr-xr-x
📄
__init__.py
8.96 KB
10/26/2024 01:25:20 PM
rw-r--r--
📁
__pycache__
-
10/26/2024 01:26:41 PM
rwxr-xr-x
📄
_deprecation_warning.py
218 bytes
10/26/2024 01:25:20 PM
rw-r--r--
📁
_distutils
-
10/26/2024 01:28:05 PM
rwxr-xr-x
📄
_entry_points.py
2.23 KB
10/26/2024 01:25:20 PM
rw-r--r--
📄
_imp.py
2.34 KB
10/26/2024 01:25:20 PM
rw-r--r--
📄
_importlib.py
1.28 KB
10/26/2024 01:25:20 PM
rw-r--r--
📄
_itertools.py
675 bytes
10/26/2024 01:25:20 PM
rw-r--r--
📄
_path.py
749 bytes
10/26/2024 01:25:20 PM
rw-r--r--
📄
_reqs.py
501 bytes
10/26/2024 01:25:20 PM
rw-r--r--
📁
_vendor
-
10/26/2024 01:28:07 PM
rwxr-xr-x
📄
archive_util.py
7.17 KB
10/26/2024 01:25:18 PM
rw-r--r--
📄
build_meta.py
19.15 KB
10/26/2024 01:25:18 PM
rw-r--r--
📄
cli-32.exe
64 KB
10/26/2024 01:25:18 PM
rw-r--r--
📄
cli-64.exe
73 KB
10/26/2024 01:25:18 PM
rw-r--r--
📄
cli-arm64.exe
134 KB
10/26/2024 01:25:18 PM
rw-r--r--
📄
cli.exe
64 KB
10/26/2024 01:25:18 PM
rw-r--r--
📁
command
-
10/26/2024 01:28:03 PM
rwxr-xr-x
📁
config
-
10/26/2024 01:28:04 PM
rwxr-xr-x
📄
dep_util.py
949 bytes
10/26/2024 01:25:18 PM
rw-r--r--
📄
depends.py
5.37 KB
10/26/2024 01:25:18 PM
rw-r--r--
📄
discovery.py
20.33 KB
10/26/2024 01:25:18 PM
rw-r--r--
📄
dist.py
44.46 KB
10/26/2024 01:25:18 PM
rw-r--r--
📄
errors.py
2.41 KB
10/26/2024 01:25:18 PM
rw-r--r--
📄
extension.py
5.46 KB
10/26/2024 01:25:18 PM
rw-r--r--
📁
extern
-
10/26/2024 01:28:04 PM
rwxr-xr-x
📄
glob.py
4.76 KB
10/26/2024 01:25:19 PM
rw-r--r--
📄
gui-32.exe
64 KB
10/26/2024 01:25:19 PM
rw-r--r--
📄
gui-64.exe
73.5 KB
10/26/2024 01:25:19 PM
rw-r--r--
📄
gui-arm64.exe
134.5 KB
10/26/2024 01:25:19 PM
rw-r--r--
📄
gui.exe
64 KB
10/26/2024 01:25:19 PM
rw-r--r--
📄
installer.py
3.73 KB
10/26/2024 01:25:19 PM
rw-r--r--
📄
launch.py
812 bytes
10/26/2024 01:25:19 PM
rw-r--r--
📄
logging.py
1.2 KB
10/26/2024 01:25:19 PM
rw-r--r--
📄
monkey.py
4.59 KB
10/26/2024 01:25:19 PM
rw-r--r--
📄
msvc.py
46.01 KB
10/26/2024 01:25:19 PM
rw-r--r--
📄
namespaces.py
3.02 KB
10/26/2024 01:25:19 PM
rw-r--r--
📄
package_index.py
38.75 KB
10/26/2024 01:25:20 PM
rw-r--r--
📄
py34compat.py
245 bytes
10/26/2024 01:25:19 PM
rw-r--r--
📄
sandbox.py
14.01 KB
10/26/2024 01:25:20 PM
rw-r--r--
📄
script (dev).tmpl
218 bytes
10/26/2024 01:25:20 PM
rw-r--r--
📄
script.tmpl
138 bytes
10/26/2024 01:25:20 PM
rw-r--r--
📄
unicode_utils.py
941 bytes
10/26/2024 01:25:20 PM
rw-r--r--
📄
version.py
144 bytes
10/26/2024 01:25:20 PM
rw-r--r--
📄
wheel.py
8.18 KB
10/26/2024 01:25:20 PM
rw-r--r--
📄
windows_support.py
718 bytes
10/26/2024 01:25:20 PM
rw-r--r--
Editing: errors.py
Close
"""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 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. """