blob: 1f23b972e49f1764a62cc79e543775e71b2abb52 [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$"