cpython/Lib/distutils
Greg Ward ceb9e226a6 Fixed some bugs and mis-features in handling config files:
* options can now be spelled "foo-bar" or "foo_bar" (handled in
    'parse_config_files()', just after we parse a file)
  * added a "[global]" section so there's a place to set global
    options like verbose/quiet and dry-run
  * respect the "negative alias" dictionary so (eg.) "quiet=1" is
    the same as "verbose=0" (this had to be done twice: once in
    'parse_config_file()' for global options, and once in
    '_set_command_options()' for per-command options)
  * the other half of handling boolean options correctly: allow
    commands to list their boolean options in a 'boolean_options'
    class attribute, and use it to translate strings (like "yes", "1",
    "no", "0", etc) to true or false
2000-09-25 01:23:52 +00:00
..
command Split 'run()' up into 'build()', 'install()', and 'bytecompile()' (for 2000-09-23 01:20:19 +00:00
README This little note is to clarify things for people who go poking around the 2000-04-09 02:31:45 +00:00
__init__.py Bump version to 0.9.3pre. 2000-09-13 00:44:09 +00:00
archive_util.py Ensure destination directory exists before trying to create a tarball 2000-08-22 01:48:54 +00:00
bcppcompiler.py Rene Liebscher: 2000-09-01 01:28:33 +00:00
ccompiler.py Added 'debug_print()'. 2000-08-04 01:31:13 +00:00
cmd.py In 'reinitialize_subcommand()', pass 'reinit_subcommands' flag on to the 2000-09-16 15:25:55 +00:00
core.py Added 'run_setup()' to allow outsiders to run a setup script under 2000-09-01 00:52:45 +00:00
cygwinccompiler.py Rene Liebscher: comment fixes. 2000-09-01 01:24:31 +00:00
dep_util.py Reorganization: ripped util.py to shreds, creating in the process: 2000-04-04 02:05:59 +00:00
dir_util.py Renamed PATH_CREATED to _path_created, on the grounds that it's private and 2000-06-17 02:19:30 +00:00
dist.py Fixed some bugs and mis-features in handling config files: 2000-09-25 01:23:52 +00:00
errors.py Added DistutilsTemplateError. 2000-07-30 01:03:31 +00:00
extension.py Added 'read_setup_file()' to read old-style Setup files. Could make life 2000-09-17 00:45:18 +00:00
fancy_getopt.py Added docstring for 'wrap()' function. 2000-08-30 17:16:27 +00:00
file_util.py Reformat docstrings. 2000-09-23 00:59:34 +00:00
filelist.py Added list-like methods: 'append()', 'extend()', 'sort()'. 2000-07-30 01:45:42 +00:00
msvccompiler.py *Very* belated application of Thomas Heller's patch to handle 2000-09-19 23:56:43 +00:00
spawn.py Rene Liebscher: factor 'find_executable()' out of '_spawn_nt()'. 2000-08-02 01:08:02 +00:00
sysconfig.py Added 'expand_makefile_vars()' to (duh) expand make-style variables 2000-09-17 00:53:02 +00:00
text_file.py Changed so lines that are all comment (or just whitespace + comment) 2000-09-16 18:33:36 +00:00
unixccompiler.py Added 'debug' flag to 'find_library_file()'. 2000-08-04 01:28:39 +00:00
util.py Fix 'convert_path()' so it returns immediately under Unix -- prevents blowing 2000-09-22 01:05:43 +00:00
version.py typos fixed by Rob Hooft 2000-06-28 14:48:01 +00:00

README

This directory contains only a subset of the Distutils, specifically the
Python modules in the 'distutils' and 'distutils.command' packages.
Technically, this is all you need to distribute and install Python modules
using the Distutils.  Most people will want some documentation and other
help, though.  Currently, everything can be found at the Distutils web page:

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

From there you can access the latest documentation, or download a standalone
Distutils release that includes all the code in this directory, plus
documentation, test scripts, examples, etc.

The Distutils documentation isn't yet part of the standard Python
documentation set, but will be soon.

        Greg Ward (gward@python.net)

$Id$