massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / distutils / command / sdist.pyi
1 from typing import Any
2
3 from ..cmd import Command
4
5 def show_formats() -> None: ...
6
7 class sdist(Command):
8     description: str
9     def checking_metadata(self): ...
10     user_options: Any
11     boolean_options: Any
12     help_options: Any
13     negative_opt: Any
14     sub_commands: Any
15     READMES: Any
16     template: Any
17     manifest: Any
18     use_defaults: int
19     prune: int
20     manifest_only: int
21     force_manifest: int
22     formats: Any
23     keep_temp: int
24     dist_dir: Any
25     archive_files: Any
26     metadata_check: int
27     owner: Any
28     group: Any
29     def initialize_options(self) -> None: ...
30     def finalize_options(self) -> None: ...
31     filelist: Any
32     def run(self) -> None: ...
33     def check_metadata(self) -> None: ...
34     def get_file_list(self) -> None: ...
35     def add_defaults(self) -> None: ...
36     def read_template(self) -> None: ...
37     def prune_file_list(self) -> None: ...
38     def write_manifest(self) -> None: ...
39     def read_manifest(self) -> None: ...
40     def make_release_tree(self, base_dir, files) -> None: ...
41     def make_distribution(self) -> None: ...
42     def get_archive_files(self): ...