PATH:
opt
/
hc_python
/
lib
/
python3.12
/
site-packages
/
build
from __future__ import annotations import os import typing __all__ = ['ConfigSettings', 'Distribution', 'StrPath', 'SubprocessRunner'] ConfigSettings = typing.Mapping[str, typing.Union[str, typing.Sequence[str]]] Distribution = typing.Literal['sdist', 'wheel', 'editable'] StrPath = typing.Union[str, os.PathLike[str]] if typing.TYPE_CHECKING: from pyproject_hooks import SubprocessRunner else: SubprocessRunner = typing.Callable[ [typing.Sequence[str], typing.Optional[str], typing.Optional[typing.Mapping[str, str]]], None ]
[+]
__pycache__
[-] util.py
[edit]
[-] _builder.py
[edit]
[-] env.py
[edit]
[-] _types.py
[edit]
[+]
_compat
[-] __init__.py
[edit]
[-] _ctx.py
[edit]
[+]
..
[-] _exceptions.py
[edit]
[-] py.typed
[edit]
[-] _util.py
[edit]
[-] __main__.py
[edit]