openmedialibrary_platform/Darwin/lib/python3.4/distutils/__init__.py

18 lines
314 B
Python
Raw Normal View History

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 (...)
"""
# Distutils version
#
# Updated automatically by the Python release process.
#
#--start constants--
2014-09-30 16:15:32 +00:00
__version__ = "3.4.1"
2013-10-11 17:28:32 +00:00
#--end constants--