blob: 16d387a46a525c715961e6fae5f37d772b37d439 [file] [log] [blame]
Greg Wardda2d3521999-09-22 15:24:04 +00001"""distutils
2
3The main package for the Python Module Distribtion Utilities. Normally
4used from a setup script as
5
6 from distutils.core import setup
7
8 setup (...)
9"""
10
Greg Ward3ce77fd2000-03-02 01:49:45 +000011__revision__ = "$Id$"
Greg Ward582a8702000-04-10 00:02:16 +000012
Andrew M. Kuchlingc42402f2001-04-23 16:01:06 +000013__version__ = "1.0.2"