massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / distutils / command / install_lib.pyi
1 from typing import Any
2
3 from ..cmd import Command
4
5 PYTHON_SOURCE_EXTENSION: str
6
7 class install_lib(Command):
8     description: str
9     user_options: Any
10     boolean_options: Any
11     negative_opt: Any
12     install_dir: Any
13     build_dir: Any
14     force: int
15     compile: Any
16     optimize: Any
17     skip_build: Any
18     def initialize_options(self) -> None: ...
19     def finalize_options(self) -> None: ...
20     def run(self) -> None: ...
21     def build(self) -> None: ...
22     def install(self): ...
23     def byte_compile(self, files) -> None: ...
24     def get_outputs(self): ...
25     def get_inputs(self): ...