cpython/Lib/distutils
Andrew M. Kuchling 8c6e0ec16a Bug #599248: strip directories when building Python. Out-of-tree builds should work again. 2002-12-29 17:00:57 +00:00
..
command Fix mode on scripts to have the read bit set (noted by Nicholas Riley) 2002-11-29 19:45:58 +00:00
README Update file 2002-11-13 13:26:59 +00:00
__init__.py Add comment to Distutil files about requiring 1.5.2 compatibility, as 2002-11-19 13:12:28 +00:00
archive_util.py Bug #639118 from Ollie Oldham: archiver should use zipfile before zip 2002-11-21 18:33:28 +00:00
bcppcompiler.py Add comment to Distutil files about requiring 1.5.2 compatibility, as 2002-11-19 13:12:28 +00:00
ccompiler.py Bug #599248: strip directories when building Python. Out-of-tree builds should work again. 2002-12-29 17:00:57 +00:00
cmd.py Add comment to Distutil files about requiring 1.5.2 compatibility, as 2002-11-19 13:12:28 +00:00
core.py Add comment to Distutil files about requiring 1.5.2 compatibility, as 2002-11-19 13:12:28 +00:00
cygwinccompiler.py Add comment to Distutil files about requiring 1.5.2 compatibility, as 2002-11-19 13:12:28 +00:00
debug.py Add comment to Distutil files about requiring 1.5.2 compatibility, as 2002-11-19 13:12:28 +00:00
dep_util.py Add comment to Distutil files about requiring 1.5.2 compatibility, as 2002-11-19 13:12:28 +00:00
dir_util.py Part of the fix for bug #410541: add ensure_relative() function 2002-11-26 17:42:48 +00:00
dist.py Add comment to Distutil files about requiring 1.5.2 compatibility, as 2002-11-19 13:12:28 +00:00
emxccompiler.py Remove 'created by' lines; people can use CVS for this, and the information is often out of date 2002-11-14 02:25:42 +00:00
errors.py Add comment to Distutil files about requiring 1.5.2 compatibility, as 2002-11-19 13:12:28 +00:00
extension.py [Part of patch #641685] Add .dylib as an extension for shared libraries 2002-11-27 13:45:26 +00:00
fancy_getopt.py Add comment to Distutil files about requiring 1.5.2 compatibility, as 2002-11-19 13:12:28 +00:00
file_util.py Add comment to Distutil files about requiring 1.5.2 compatibility, as 2002-11-19 13:12:28 +00:00
filelist.py Add comment to Distutil files about requiring 1.5.2 compatibility, as 2002-11-19 13:12:28 +00:00
log.py Add comment to Distutil files about requiring 1.5.2 compatibility, as 2002-11-19 13:12:28 +00:00
msvccompiler.py Add comment to Distutil files about requiring 1.5.2 compatibility, as 2002-11-19 13:12:28 +00:00
mwerkscompiler.py Add comment to Distutil files about requiring 1.5.2 compatibility, as 2002-11-19 13:12:28 +00:00
spawn.py Reflow comment 2002-11-21 20:41:07 +00:00
sysconfig.py Remove 'created by' lines; people can use CVS for this, and the information is often out of date 2002-11-14 02:25:42 +00:00
text_file.py Remove 'created by' lines; people can use CVS for this, and the information is often out of date 2002-11-14 02:25:42 +00:00
unixccompiler.py Patch #642019: Recognize gcc-x.y as gcc. 2002-11-21 20:33:24 +00:00
util.py Adding Python <= 2.2 support back in. 2002-12-03 08:45:11 +00:00
version.py Remove 'created by' lines; people can use CVS for this, and the information is often out of date 2002-11-14 02:25:42 +00:00

README

This directory contains only a subset of the Distutils, specifically
the Python modules in the 'distutils' and 'distutils.command'
packages.  This is all you need to distribute and install Python
modules using the Distutils.  There is also a separately packaged
standalone version of the Distutils available for people who want to
upgrade the Distutils without upgrading Python, available from the
Distutils web page:

    http://www.python.org/sigs/distutils-sig/

The standalone version includes all of the code in this directory,
plus documentation, test scripts, examples, etc.

The Distutils documentation is divided into two documents, "Installing
Python Modules", which explains how to install Python packages, and
"Distributing Python Modules", which explains how to write setup.py
files.  Both documents are part of the standard Python documentation
set, and are available from http://www.python.org/doc/current/ .

        Greg Ward (gward@python.net)

$Id$