X7ROOT File Manager
Current Path:
/opt/hc_python/lib/python3.12/site-packages/build
opt
/
hc_python
/
lib
/
python3.12
/
site-packages
/
build
/
📁
..
📄
__init__.py
(837 B)
📄
__main__.py
(15.15 KB)
📁
__pycache__
📄
_builder.py
(13.15 KB)
📁
_compat
📄
_ctx.py
(2.82 KB)
📄
_exceptions.py
(1.59 KB)
📄
_types.py
(553 B)
📄
_util.py
(2.27 KB)
📄
env.py
(13.91 KB)
📄
py.typed
(0 B)
📄
util.py
(1.8 KB)
Editing: _types.py
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 ]
Upload File
Create Folder