File tree 1 file changed +8
-27
lines changed
1 file changed +8
-27
lines changed Original file line number Diff line number Diff line change 3
3
Package containing implementation of all the standard Distutils
4
4
commands."""
5
5
6
- from . import (
7
- bdist ,
8
- bdist_dumb ,
9
- bdist_rpm ,
10
- build ,
11
- build_clib ,
12
- build_ext ,
13
- build_py ,
14
- build_scripts ,
15
- check ,
16
- clean ,
17
- install ,
18
- install_data ,
19
- install_headers ,
20
- install_lib ,
21
- install_scripts ,
22
- sdist ,
23
- )
24
-
25
6
__all__ = [
26
- 'bdist' ,
27
- 'bdist_dumb' ,
28
- 'bdist_rpm' ,
29
7
'build' ,
30
- 'build_clib' ,
31
- 'build_ext' ,
32
8
'build_py' ,
9
+ 'build_ext' ,
10
+ 'build_clib' ,
33
11
'build_scripts' ,
34
- 'check' ,
35
12
'clean' ,
36
13
'install' ,
37
- 'install_data' ,
38
- 'install_headers' ,
39
14
'install_lib' ,
15
+ 'install_headers' ,
40
16
'install_scripts' ,
17
+ 'install_data' ,
41
18
'sdist' ,
19
+ 'bdist' ,
20
+ 'bdist_dumb' ,
21
+ 'bdist_rpm' ,
22
+ 'check' ,
42
23
]
You can’t perform that action at this time.
0 commit comments