1999-09-21 15:33:09 -03:00
|
|
|
"""distutils.command
|
|
|
|
|
|
|
|
Package containing implementation of all the standard Distutils
|
2000-03-18 13:36:09 -04:00
|
|
|
commands."""
|
1999-09-21 15:33:09 -03:00
|
|
|
|
2002-11-19 09:12:28 -04:00
|
|
|
# This module should be kept compatible with Python 1.5.2.
|
|
|
|
|
2000-03-01 21:49:45 -04:00
|
|
|
__revision__ = "$Id$"
|
1999-03-22 10:55:25 -04:00
|
|
|
|
|
|
|
__all__ = ['build',
|
|
|
|
'build_py',
|
1999-09-21 15:33:09 -03:00
|
|
|
'build_ext',
|
2000-03-28 22:18:39 -04:00
|
|
|
'build_clib',
|
2000-05-24 22:19:18 -03:00
|
|
|
'build_scripts',
|
2000-05-28 20:49:03 -03:00
|
|
|
'clean',
|
1999-09-21 15:33:09 -03:00
|
|
|
'install',
|
2000-03-28 22:18:39 -04:00
|
|
|
'install_lib',
|
2000-05-26 22:25:16 -03:00
|
|
|
'install_headers',
|
2000-05-11 21:52:23 -03:00
|
|
|
'install_scripts',
|
|
|
|
'install_data',
|
2000-02-17 20:11:52 -04:00
|
|
|
'sdist',
|
2000-03-30 23:14:51 -04:00
|
|
|
'bdist',
|
|
|
|
'bdist_dumb',
|
2000-05-12 22:48:15 -03:00
|
|
|
'bdist_rpm',
|
2000-06-26 22:24:07 -03:00
|
|
|
'bdist_wininst',
|
2002-10-04 06:30:06 -03:00
|
|
|
# These two are reserved for future use:
|
|
|
|
#'bdist_sdux',
|
|
|
|
#'bdist_pkgtool',
|
2002-04-17 17:30:10 -03:00
|
|
|
# Note:
|
|
|
|
# bdist_packager is not included because it only provides
|
|
|
|
# an abstract base class
|
1999-03-22 10:55:25 -04:00
|
|
|
]
|