Odoo18-Base/venv/lib/python3.12/site-packages/pip/_internal/models/scheme.py
hoangvv 0151767149
All checks were successful
Setup Docker Action / setup_docker (3.12.7) (push) Has been skipped
Setup Native Action / test (push) Successful in 0s
Setup Native Action / setup_native (3.12.7) (push) Has been skipped
add venv to project
2025-01-15 08:43:08 +07:00

26 lines
575 B
Python

"""
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