blob: b52a9fe6c40654dce6335302dafee13c6bd2d405 [file] [log] [blame]
Greg Wardda2d3521999-09-22 15:24:04 +00001"""distutils
2
Andrew M. Kuchlingb3ca3032001-04-23 17:13:03 +00003The main package for the Python Module Distribution Utilities. Normally
Greg Wardda2d3521999-09-22 15:24:04 +00004used from a setup script as
5
6 from distutils.core import setup
7
8 setup (...)
9"""
10
Thomas Wouters00ee7ba2006-08-21 19:07:27 +000011# Distutils version
12#
Tarek Ziadé84753de2009-02-05 09:08:59 +000013# Updated automatically by the Python release process.
Thomas Wouters00ee7ba2006-08-21 19:07:27 +000014#
Barry Warsawbb5cd082008-04-02 23:33:27 +000015#--start constants--
Georg Brandl44036012012-04-10 19:28:09 +020016__version__ = "3.2.3"
Barry Warsawbb5cd082008-04-02 23:33:27 +000017#--end constants--