/usr/lib/imh-scan/venv/lib/python3.13/site-packages/pip/_internal/models
NameSizeModeActions
__pycache__/-0755rm
candidate.py7530644editdlrm
direct_url.py65550644editdlrm
format_control.py24710644editdlrm
index.py10300644editdlrm
installation_report.py28390644editdlrm
link.py217930644editdlrm
pylock.py62110644editdlrm
scheme.py5750644editdlrm
search_scope.py45070644editdlrm
selection_prefs.py20160644editdlrm
target_python.py42430644editdlrm
wheel.py29200644editdlrm
__init__.py620644editdlrm
Edit: /usr/lib/imh-scan/venv/lib/python3.13/site-packages/pip/_internal/models/scheme.py (575B)
""" 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) class Scheme: """A Scheme holds paths which are used as the base directories for artifacts associated with a Python package. """ __slots__ = SCHEME_KEYS platlib: str purelib: str headers: str scripts: str data: str