home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2011 June / maximum-cd-2011-06.iso / DiscContents / LibO_3.3.1_Win_x86_install_multi.exe / libreoffice1.cab / __init__6.py < prev    next >
Encoding:
Python Source  |  2011-02-15  |  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 67515 2008-12-04 02:59:51Z 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.1"
  26. #--end constants--
  27.