repo.or.cz
/
python
/
dscho.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
- Got rid of newmodule.c
[python/dscho.git]
/
Lib
/
distutils
/
command
/
__init__.py
blob
814362755945c16dff8fbd4ec091d22933f75043
1
"""distutils.command
2
3
Package containing implementation of all the standard Distutils
4
commands."""
5
6
__revision__
=
"$Id$"
7
8
__all__
= [
'build'
,
9
'build_py'
,
10
'build_ext'
,
11
'build_clib'
,
12
'build_scripts'
,
13
'clean'
,
14
'install'
,
15
'install_lib'
,
16
'install_headers'
,
17
'install_scripts'
,
18
'install_data'
,
19
'sdist'
,
20
'bdist'
,
21
'bdist_dumb'
,
22
'bdist_rpm'
,
23
'bdist_wininst'
,
24
'bdist_sdux'
,
25
'bdist_pkgtool'
,
26
# Note:
27
# bdist_packager is not included because it only provides
28
# an abstract base class
29
]