1 """distutils 2 3 The main package for the Python Module Distribution Utilities. Normally 4 used from a setup script as 5 6 from distutils.core import setup 7 8 setup (...) 9 """ 10 11 __revision__ = "$Id$" 12 13 # Distutils version 14 # 15 # Updated automatically by the Python release process. 16 # 17 #--start constants-- 18 __version__ = "2.7.5" 19 #--end constants-- 20