home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / lib / python2.6 / distutils / __init__.py next >
Encoding:
Python Source  |  2009-04-18  |  670 b   |  27 lines

  1. """distutils
  2.  
  3. The main package for the Python Module Distribution Utilities.  Normally
  4. used from a setup script as
  5.  
  6.    from distutils.core import setup
  7.  
  8.    setup (...)
  9. """
  10.  
  11. # This module should be kept compatible with Python 2.1.
  12.  
  13. __revision__ = "$Id: __init__.py 71600 2009-04-14 13:16:19Z barry.warsaw $"
  14.  
  15. # Distutils version
  16. #
  17. # Please coordinate with Marc-Andre Lemburg <mal@egenix.com> when adding
  18. # new features to distutils that would warrant bumping the version number.
  19. #
  20. # In general, major and minor version should loosely follow the Python
  21. # version number the distutils code was shipped with.
  22. #
  23.  
  24. #--start constants--
  25. __version__ = "2.6.2"
  26. #--end constants--
  27.