source: python/trunk/Lib/distutils/__init__.py

Last change on this file was 391, checked in by dmik, 11 years ago

python: Merge vendor 2.7.6 to trunk.

  • Property svn:eol-style set to native
File size: 337 bytes
Line 
1"""distutils
2
3The main package for the Python Module Distribution Utilities. Normally
4used 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.6"
19#--end constants--
Note: See TracBrowser for help on using the repository browser.