Rebrand the Rust client crate (coven/ → hh/, package+binary "hack-house"), README, CLI strings, and branch (coven → hack-house). Gitea repo renamed cmd-chat → hack-house to match. Crypto/server logic unchanged; selftest + golden-vector test still green, binary is now `hack-house`. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
24 lines
558 B
Python
24 lines
558 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, 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
|