@@ -5,46 +5,46 @@ from distutils.cmd import Command as Command
5
5
from distutils .dist import Distribution as Distribution
6
6
from distutils .extension import Extension as Extension
7
7
8
- def setup (name : str = ...,
9
- version : str = ... ,
10
- description : str = ...,
11
- long_description : str = ...,
12
- author : str = ...,
13
- author_email : str = ...,
14
- maintainer : str = ...,
15
- maintainer_email : str = ...,
16
- url : str = ...,
17
- download_url : str = ...,
18
- packages : List [ str ] = ...,
19
- py_modules : List [ str ] = ...,
20
- scripts : List [str ] = ...,
21
- ext_modules : List [Extension ] = ...,
22
- classifiers : List [str ] = ...,
23
- distclass : Type [ Distribution ] = ...,
24
- script_name : str = ...,
25
- script_args : List [ str ] = ...,
26
- options : Mapping [ str , Any ] = ...,
27
- license : str = ...,
28
- keywords : Union [ List [ str ], str ] = ...,
29
- platforms : Union [ List [ str ], str ] = ...,
30
- cmdclass : Mapping [ str , Type [ Command ] ] = ...,
31
- data_files : List [Tuple [ str , List [ str ]] ] = ...,
32
- 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
- include_package_data : bool = ...,
40
- libraries : List [str ] = ...,
41
- headers : List [ str ] = ...,
42
- ext_package : str = ...,
43
- include_dirs : List [str ] = ...,
44
- password : str = ...,
45
- fullname : str = ...,
46
- ** attrs : Any ) -> None : ...
47
-
48
- def run_setup ( script_name : str ,
49
- script_args : Optional [ List [ str ]] = ...,
50
- stop_after : str = ...) -> Distribution : ...
8
+ def setup (
9
+ * ,
10
+ name : str = ...,
11
+ version : str = ...,
12
+ description : str = ...,
13
+ long_description : str = ...,
14
+ author : str = ...,
15
+ author_email : str = ...,
16
+ maintainer : str = ...,
17
+ maintainer_email : str = ...,
18
+ url : str = ...,
19
+ download_url : str = ...,
20
+ packages : List [str ] = ...,
21
+ py_modules : List [str ] = ...,
22
+ scripts : List [str ] = ...,
23
+ ext_modules : List [ Extension ] = ...,
24
+ classifiers : List [ str ] = ...,
25
+ distclass : Type [ Distribution ] = ...,
26
+ script_name : str = ...,
27
+ script_args : List [ str ] = ...,
28
+ options : Mapping [ str , Any ] = ...,
29
+ license : str = ...,
30
+ keywords : Union [ List [ str ], str ] = ...,
31
+ platforms : Union [ List [str ], str ] = ...,
32
+ cmdclass : Mapping [str , Type [ Command ] ] = ...,
33
+ data_files : List [Tuple [ str , List [ str ]] ] = ...,
34
+ package_dir : Mapping [ str , str ] = ...,
35
+ obsoletes : List [str ] = ...,
36
+ provides : List [str ] = ...,
37
+ requires : List [str ] = ...,
38
+ command_packages : List [str ] = ...,
39
+ command_options : Mapping [ str , Mapping [ str , Tuple [ Any , Any ]]] = ...,
40
+ package_data : Mapping [ str , List [str ] ] = ...,
41
+ include_package_data : bool = ...,
42
+ libraries : List [ str ] = ...,
43
+ headers : List [str ] = ...,
44
+ ext_package : str = ...,
45
+ include_dirs : List [ str ] = ...,
46
+ password : str = ...,
47
+ fullname : str = ...,
48
+ ** attrs : Any ,
49
+ ) -> None : ...
50
+ def run_setup ( script_name : str , script_args : Optional [ List [ str ]] = ..., stop_after : str = ...) -> Distribution : ...
0 commit comments