OXIESEC PANEL
- Current Dir:
/
/
opt
/
alt
/
python37
/
lib
/
python3.7
/
site-packages
/
pip
/
_internal
/
models
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/16/2024 09:01:52 PM
rwxr-xr-x
📄
__init__.py
63 bytes
11/13/2023 09:31:06 PM
rw-r--r--
📁
__pycache__
-
02/16/2024 09:01:52 PM
rwxr-xr-x
📄
candidate.py
1.17 KB
11/13/2023 09:31:06 PM
rw-r--r--
📄
direct_url.py
6.74 KB
11/13/2023 09:31:06 PM
rw-r--r--
📄
format_control.py
2.76 KB
11/13/2023 09:31:06 PM
rw-r--r--
📄
index.py
1.13 KB
11/13/2023 09:31:06 PM
rw-r--r--
📄
installation_report.py
2.56 KB
03/16/2023 12:55:40 PM
rw-r--r--
📄
link.py
7.29 KB
11/13/2023 09:31:06 PM
rw-r--r--
📄
scheme.py
778 bytes
11/13/2023 09:31:06 PM
rw-r--r--
📄
search_scope.py
4.64 KB
11/13/2023 09:31:06 PM
rw-r--r--
📄
selection_prefs.py
2 KB
11/13/2023 09:31:06 PM
rw-r--r--
📄
target_python.py
3.94 KB
11/13/2023 09:31:06 PM
rw-r--r--
📄
wheel.py
2.71 KB
11/13/2023 09:31:06 PM
rw-r--r--
Editing: scheme.py
Close
""" For types associated with installation schemes. For a general overview of available schemes and their context, see https://docs.python.org/3/install/index.html#alternate-installation. """ SCHEME_KEYS = ['platlib', 'purelib', 'headers', 'scripts', 'data'] class Scheme(object): """A Scheme holds paths which are used as the base directories for artifacts associated with a Python package. """ __slots__ = SCHEME_KEYS def __init__( self, platlib, # type: str purelib, # type: str headers, # type: str scripts, # type: str data, # type: str ): self.platlib = platlib self.purelib = purelib self.headers = headers self.scripts = scripts self.data = data