/opt/imh/python3.13/lib/python3.13/site-packages/pip/_internal/models
NameSizeModeActions
__pycache__/-0755rm
candidate.py7530644editdlrm
direct_url.py65780644editdlrm
format_control.py24860644editdlrm
index.py10300644editdlrm
installation_report.py28180644editdlrm
link.py210340644editdlrm
scheme.py5750644editdlrm
search_scope.py45310644editdlrm
selection_prefs.py20150644editdlrm
target_python.py42710644editdlrm
wheel.py45390644editdlrm
__init__.py630644editdlrm
Edit: /opt/imh/python3.13/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