__init__.py 250 B

123456789101112131415
  1. """distutils
  2. The main package for the Python Module Distribution Utilities. Normally
  3. used from a setup script as
  4. from distutils.core import setup
  5. setup (...)
  6. """
  7. import sys
  8. __version__ = sys.version[:sys.version.index(' ')]
  9. local = True