__init__.py 236 B

12345678910111213
  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(' ')]