__init__.py 314 Bytes
Newer Older
1 2
"""distutils

3
The main package for the Python Module Distribution Utilities.  Normally
4 5 6 7 8 9 10
used from a setup script as

   from distutils.core import setup

   setup (...)
"""

11 12
# Distutils version
#
13
# Updated automatically by the Python release process.
14
#
15
#--start constants--
16
__version__ = "3.4.2"
17
#--end constants--