massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / setuptools / setuptools / dist.pyi
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/setuptools/setuptools/dist.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/setuptools/setuptools/dist.pyi
new file mode 100644 (file)
index 0000000..a53f22b
--- /dev/null
@@ -0,0 +1,35 @@
+from distutils.core import Distribution as _Distribution
+from typing import Any
+
+from setuptools import SetuptoolsDeprecationWarning
+
+class Distribution(_Distribution):
+    def patch_missing_pkg_info(self, attrs) -> None: ...
+    package_data: Any
+    dist_files: Any
+    src_root: Any
+    dependency_links: Any
+    setup_requires: Any
+    def __init__(self, attrs: Any | None = ...) -> None: ...
+    def warn_dash_deprecation(self, opt, section): ...
+    def make_option_lowercase(self, opt, section): ...
+    def parse_config_files(self, filenames: Any | None = ..., ignore_option_errors: bool = ...) -> None: ...
+    def fetch_build_eggs(self, requires): ...
+    def finalize_options(self): ...
+    def get_egg_cache_dir(self): ...
+    def fetch_build_egg(self, req): ...
+    def get_command_class(self, command): ...
+    def print_commands(self): ...
+    def get_command_list(self): ...
+    def include(self, **attrs) -> None: ...
+    packages: Any
+    py_modules: Any
+    ext_modules: Any
+    def exclude_package(self, package) -> None: ...
+    def has_contents_for(self, package): ...
+    def exclude(self, **attrs) -> None: ...
+    def get_cmdline_options(self): ...
+    def iter_distribution_names(self) -> None: ...
+    def handle_display_options(self, option_order): ...
+
+class DistDeprecationWarning(SetuptoolsDeprecationWarning): ...