/usr/local/lib/python3.6/site-packages/pip/_internal/models
NameSizeModeActions
__pycache__/-0755rm
candidate.py9900644editdlrm
direct_url.py63500644editdlrm
format_control.py25200644editdlrm
index.py10300644editdlrm
link.py98170644editdlrm
scheme.py7380644editdlrm
search_scope.py45200644editdlrm
selection_prefs.py19070644editdlrm
target_python.py38580644editdlrm
wheel.py35000644editdlrm
__init__.py630644editdlrm
Edit: /usr/local/lib/python3.6/site-packages/pip/_internal/models/scheme.py (738B)
""" 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: """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: str, purelib: str, headers: str, scripts: str, data: str, ) -> None: self.platlib = platlib self.purelib = purelib self.headers = headers self.scripts = scripts self.data = data