massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / distutils / command / install_egg_info.pyi
1 from typing import Any, ClassVar
2
3 from ..cmd import Command
4
5 class install_egg_info(Command):
6     description: ClassVar[str]
7     user_options: ClassVar[list[tuple[str, str | None, str]]]
8     install_dir: Any
9     def initialize_options(self) -> None: ...
10     target: Any
11     outputs: Any
12     def finalize_options(self) -> None: ...
13     def run(self) -> None: ...
14     def get_outputs(self) -> list[str]: ...
15
16 def safe_name(name): ...
17 def safe_version(version): ...
18 def to_filename(name): ...