• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1"""distutils.command
2
3Package containing implementation of all the standard Distutils
4commands."""
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           'register',
21           'bdist',
22           'bdist_dumb',
23           'bdist_rpm',
24           'bdist_wininst',
25           'upload',
26           'check',
27           # These two are reserved for future use:
28           #'bdist_sdux',
29           #'bdist_pkgtool',
30           # Note:
31           # bdist_packager is not included because it only provides
32           # an abstract base class
33          ]
34