2013-10-11 17:28:32 +00:00
|
|
|
"""distutils
|
|
|
|
|
|
|
|
The main package for the Python Module Distribution Utilities. Normally
|
|
|
|
used from a setup script as
|
|
|
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
setup (...)
|
|
|
|
"""
|
|
|
|
|
2015-11-25 01:25:01 +00:00
|
|
|
import sys
|
|
|
|
|
|
|
|
__version__ = sys.version[:sys.version.index(' ')]
|