summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/install_lib.py
Commit message (Collapse)AuthorAgeFilesLines
* Renamed all command classes so they're exactly the same as the name of theGreg Ward2000-02-181-1/+1
| | | | | command itself: no more of this "FooBar class for foo_bar command" silliness.
* Added 'description' class attribute to every command class (to help theGreg Ward2000-01-301-0/+2
| | | | | | | '--help-commands' option). Shuffled imports around in a few command modules to avoid expensive up-front import of sysconfig (and resulting delays in generating list of all commands).
* Added missing run of corresponding 'build' command.Greg Ward2000-01-301-0/+3
|
* Tweaked verbosity messages for byte-compilation.Greg Ward1999-10-031-2/+2
|
* Renamed many options to be consistent across commands.Greg Ward1999-09-291-6/+4
| | | | | | Tweaked some help strings to be consistent with documentation. Don't call 'set_final_options()' in 'run()' anymore -- that's now guaranteed to be taken care of for us by the Distribution instance.
* Changed selection of installation directories (in 'set_final_options()')Greg Ward1999-09-131-6/+14
| | | | | so that pure Python modules are installed to the platform-specific directory if there are any extension modules in this distribution.
* Patch from Perry Stoll: typo fix, make sure we only compile .py files.Greg Ward1999-08-291-6/+9
|
* Rearranged things so that compilation of .py files is the responsibilityGreg Ward1999-05-021-4/+33
| | | | | | | | | of the 'install_py' command rather than 'build_py'. Obviously, this meant that the 'build_py' and 'install_py' modules had to change; less obviously, so did 'install' and 'build', since these higher-level commands must make options available to control the lower-level commands, and some compilation-related options had to migrate with the code.
* Changed to use the method versions of 'copy_file()', 'copy_tree()',Greg Ward1999-04-041-3/+1
| | | | | and 'make_file()'-- that way, the verbose and dry-run flags are handled for free.
* First checkin of real Distutils command modules.Greg Ward1999-03-221-0/+42