/opt/imunify360/venv/lib/python3.11/site-packages/pip/_internal/models
NameSizeModeActions
__pycache__/-0755rm
candidate.py7200644editdlrm
direct_url.py9440644editdlrm
format_control.py24710644editdlrm
index.py10300644editdlrm
installation_report.py28460644editdlrm
link.py219920644editdlrm
release_control.py33650644editdlrm
scheme.py5580644editdlrm
search_scope.py44610644editdlrm
selection_prefs.py15030644editdlrm
target_python.py42430644editdlrm
wheel.py29200644editdlrm
__init__.py620644editdlrm
Edit: /opt/imunify360/venv/lib/python3.11/site-packages/pip/_internal/models/scheme.py (558B)
""" 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. """ from dataclasses import dataclass SCHEME_KEYS = ["platlib", "purelib", "headers", "scripts", "data"] @dataclass(frozen=True, slots=True) class Scheme: """A Scheme holds paths which are used as the base directories for artifacts associated with a Python package. """ platlib: str purelib: str headers: str scripts: str data: str