We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 243b67f commit 70f7f6cCopy full SHA for 70f7f6c
stdlib/2and3/distutils/core.pyi
@@ -29,7 +29,20 @@ def setup(name: str = ...,
29
platforms: Union[List[str], str] = ...,
30
cmdclass: Mapping[str, Command] = ...,
31
data_files: List[Tuple[str, List[str]]] = ...,
32
- package_dir: Mapping[str, str] = ...) -> None: ...
+ package_dir: Mapping[str, str] = ...,
33
+ obsoletes: List[str] = ...,
34
+ provides: List[str] = ...,
35
+ requires: List[str] = ...,
36
+ command_packages: List[str] = ...,
37
+ command_options: Mapping[str, Mapping[str, Tuple[Any, Any]]] = ...,
38
+ package_data: Mapping[str, List[str]] = ...,
39
+ libraries: List[str] = ...,
40
+ headers: List[str] = ...,
41
+ ext_package: str = ...,
42
+ include_dirs: List[str] = ...,
43
+ password: str = ...,
44
+ fullname: str = ...) -> None: ...
45
+
46
def run_setup(script_name: str,
47
script_args: Optional[List[str]] = ...,
48
stop_after: str = ...) -> Distribution: ...
0 commit comments