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

  1. """distutils
  2.  
  3. The main package for the Python Module Distribtion Utilities.  Normally
  4. used from a setup script as
  5.  
  6.    from distutils.core import setup
  7.  
  8.    setup (...)
  9. """
  10.  
  11. __revision__ = "$Id: __init__.py,v 1.18 2000/10/15 19:20:20 gward Exp $"
  12.  
  13. __version__ = "1.0.1"
  14.