massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / setuptools / setuptools / command / bdist_egg.pyi
1 from typing import Any
2
3 from setuptools import Command
4
5 def strip_module(filename): ...
6 def sorted_walk(dir) -> None: ...
7 def write_stub(resource, pyfile) -> None: ...
8
9 class bdist_egg(Command):
10     description: str
11     user_options: Any
12     boolean_options: Any
13     bdist_dir: Any
14     plat_name: Any
15     keep_temp: int
16     dist_dir: Any
17     skip_build: int
18     egg_output: Any
19     exclude_source_files: Any
20     def initialize_options(self) -> None: ...
21     egg_info: Any
22     def finalize_options(self) -> None: ...
23     def do_install_data(self) -> None: ...
24     def get_outputs(self): ...
25     def call_command(self, cmdname, **kw): ...
26     stubs: Any
27     def run(self) -> None: ...
28     def zap_pyfiles(self) -> None: ...
29     def zip_safe(self): ...
30     def gen_header(self): ...
31     def copy_metadata_to(self, target_dir) -> None: ...
32     def get_ext_outputs(self): ...
33
34 NATIVE_EXTENSIONS: Any
35
36 def walk_egg(egg_dir) -> None: ...
37 def analyze_egg(egg_dir, stubs): ...
38 def write_safety_flag(egg_dir, safe) -> None: ...
39
40 safety_flags: Any
41
42 def scan_module(egg_dir, base, name, stubs): ...
43 def iter_symbols(code) -> None: ...
44 def can_scan(): ...
45
46 INSTALL_DIRECTORY_ATTRS: Any
47
48 def make_zipfile(zip_filename, base_dir, verbose: int = ..., dry_run: int = ..., compress: bool = ..., mode: str = ...): ...