| Server IP : 35.80.110.71 / Your IP : 216.73.216.221 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ip-172-31-21-44 6.17.0-1019-aws #19~24.04.1-Ubuntu SMP Tue Jun 23 18:53:06 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/setuptools-stubs/ |
Upload File : |
import os
from _typeshed import Incomplete
from collections.abc import Iterable, Iterator, Mapping
from typing_extensions import TypeAlias
from . import Distribution
_Path: TypeAlias = str | os.PathLike[Incomplete]
StrIter: TypeAlias = Iterator[str]
chain_iter: Incomplete
class _Filter:
def __init__(self, *patterns: str) -> None: ...
def __call__(self, item: str) -> bool: ...
def __contains__(self, item: str) -> bool: ...
class _Finder:
ALWAYS_EXCLUDE: tuple[str, ...]
DEFAULT_EXCLUDE: tuple[str, ...]
@classmethod
def find(cls, where: _Path = ".", exclude: Iterable[str] = (), include: Iterable[str] = ("*",)) -> list[str]: ...
class PackageFinder(_Finder):
ALWAYS_EXCLUDE: Incomplete
class PEP420PackageFinder(PackageFinder): ...
class ModuleFinder(_Finder): ...
class FlatLayoutPackageFinder(PEP420PackageFinder):
DEFAULT_EXCLUDE: Incomplete
class FlatLayoutModuleFinder(ModuleFinder):
DEFAULT_EXCLUDE: Incomplete
class ConfigDiscovery:
dist: Incomplete
def __init__(self, distribution: Distribution) -> None: ...
def __call__(self, force: bool = False, name: bool = True, ignore_ext_modules: bool = False) -> None: ...
def analyse_name(self) -> None: ...
def remove_nested_packages(packages: list[str]) -> list[str]: ...
def remove_stubs(packages: list[str]) -> list[str]: ...
def find_parent_package(packages: list[str], package_dir: Mapping[str, str], root_dir: _Path) -> str | None: ...
def find_package_path(name: str, package_dir: Mapping[str, str], root_dir: _Path) -> str: ...
def construct_package_dir(packages: list[str], package_path: _Path) -> dict[str, str]: ...