/Lib/distutils/command/__init__.py

http://unladen-swallow.googlecode.com/ · Python · 35 lines · 20 code · 4 blank · 11 comment · 0 complexity · 06b354867be8eaadfe8f20ac5e6e9278 MD5 · raw file

  1. """distutils.command
  2. Package containing implementation of all the standard Distutils
  3. commands."""
  4. # This module should be kept compatible with Python 2.1.
  5. __revision__ = "$Id: __init__.py 71272 2009-04-05 21:21:05Z georg.brandl $"
  6. __all__ = ['build',
  7. 'build_py',
  8. 'build_ext',
  9. 'build_clib',
  10. 'build_scripts',
  11. 'clean',
  12. 'install',
  13. 'install_lib',
  14. 'install_headers',
  15. 'install_scripts',
  16. 'install_data',
  17. 'sdist',
  18. 'register',
  19. 'bdist',
  20. 'bdist_dumb',
  21. 'bdist_rpm',
  22. 'bdist_wininst',
  23. 'upload',
  24. # These two are reserved for future use:
  25. #'bdist_sdux',
  26. #'bdist_pkgtool',
  27. # Note:
  28. # bdist_packager is not included because it only provides
  29. # an abstract base class
  30. ]