blob: 40595ba949d0d64c0dfdcfc583b100fb1bc5ffe2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
"""distutils.command
Package containing implementation of all the standard Distutils
commands. Currently this means:
build
build_py
build_ext
install
install_py
install_ext
dist
but this list will undoubtedly grow with time."""
__revision__ = "$Id$"
__all__ = ['build',
'build_py',
'build_ext',
'install',
'install_py',
'install_ext',
'sdist',
]
|