📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-06-28 00:52:27
📂
/ (Root)
/
opt
/
hc_python
/
lib
/
python3.12
/
site-packages
/
pip
/
_internal
/
models
📍 /opt/hc_python/lib/python3.12/site-packages/pip/_internal/models
🔄 Refresh
✏️
Editing: scheme.py
Read Only
""" 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
💾 Save Changes
❌ Cancel