Home | History | Annotate | Download | only in distutils
      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 import sys
     12 
     13 __version__ = sys.version[:sys.version.index(' ')]
     14