massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / distutils / command / install.pyi
1 from typing import Any, Tuple
2
3 from ..cmd import Command
4
5 HAS_USER_SITE: bool
6 SCHEME_KEYS: Tuple[str, ...]
7 INSTALL_SCHEMES: dict[str, dict[Any, Any]]
8
9 class install(Command):
10     description: str
11     user_options: Any
12     boolean_options: Any
13     negative_opt: Any
14     prefix: str | None
15     exec_prefix: Any
16     home: str | None
17     user: bool
18     install_base: Any
19     install_platbase: Any
20     root: str | None
21     install_purelib: Any
22     install_platlib: Any
23     install_headers: Any
24     install_lib: str | None
25     install_scripts: Any
26     install_data: Any
27     install_userbase: Any
28     install_usersite: Any
29     compile: Any
30     optimize: Any
31     extra_path: Any
32     install_path_file: int
33     force: int
34     skip_build: int
35     warn_dir: int
36     build_base: Any
37     build_lib: Any
38     record: Any
39     def initialize_options(self) -> None: ...
40     config_vars: Any
41     install_libbase: Any
42     def finalize_options(self) -> None: ...
43     def dump_dirs(self, msg) -> None: ...
44     def finalize_unix(self) -> None: ...
45     def finalize_other(self) -> None: ...
46     def select_scheme(self, name) -> None: ...
47     def expand_basedirs(self) -> None: ...
48     def expand_dirs(self) -> None: ...
49     def convert_paths(self, *names) -> None: ...
50     path_file: Any
51     extra_dirs: Any
52     def handle_extra_path(self) -> None: ...
53     def change_roots(self, *names) -> None: ...
54     def create_home_path(self) -> None: ...
55     def run(self) -> None: ...
56     def create_path_file(self) -> None: ...
57     def get_outputs(self): ...
58     def get_inputs(self): ...
59     def has_lib(self): ...
60     def has_headers(self): ...
61     def has_scripts(self): ...
62     def has_data(self): ...
63     sub_commands: Any