blob: bf9badd5f5f8d6ccb11a8d3262011454c3130244 [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--
Larry Hastings2d8e1e42014-01-26 00:48:23 -080016__version__ = "3.4.0b3"
Barry Warsawbb5cd082008-04-02 23:33:27 +000017#--end constants--