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