home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 15 / AACD15.ISO / AACD / Programming / Python2 / Lib / Python2.0 / distutils / command / __init__.py next >
Encoding:
Python Source  |  2000-10-16  |  578 b   |  25 lines

  1. """distutils.command
  2.  
  3. Package containing implementation of all the standard Distutils
  4. commands."""
  5.  
  6. __revision__ = "$Id: __init__.py,v 1.14 2000/06/27 01:24:07 gward Exp $"
  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.           ]
  25.