Tweaked description, help text.

This commit is contained in:
Greg Ward 2000-05-27 01:33:49 +00:00
parent cae5a1f444
commit 46380906d1

View file

@ -11,12 +11,12 @@ import os
from distutils.core import Command from distutils.core import Command
from stat import ST_MODE from stat import ST_MODE
class install_scripts(Command): class install_scripts (Command):
description = "install scripts" description = "install scripts (Python or otherwise)"
user_options = [ user_options = [
('install-dir=', 'd', "directory to install to"), ('install-dir=', 'd', "directory to install scripts to"),
('build-dir=','b', "build directory (where to install from)"), ('build-dir=','b', "build directory (where to install from)"),
('skip-build', None, "skip the build steps"), ('skip-build', None, "skip the build steps"),
] ]