Added 'description' class attribute to every command class (to help the

'--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).
This commit is contained in:
Greg Ward 2000-01-30 18:34:15 +00:00
parent 4c67936e4e
commit 37bc815053
8 changed files with 26 additions and 6 deletions

View file

@ -8,6 +8,8 @@ from distutils.util import copy_tree
class InstallPy (Command):
description = "install pure Python modules"
options = [('install-dir=', 'd', "directory to install to"),
('build-dir=','b', "build directory (where to install from)"),
('compile', 'c', "compile .py to .pyc"),