diff options
Diffstat (limited to 'setuptools/command')
-rwxr-xr-x | setuptools/command/alias.py | 4 | ||||
-rwxr-xr-x | setuptools/command/rotate.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/setuptools/command/alias.py b/setuptools/command/alias.py index 42d6b2fc..76daae7f 100755 --- a/setuptools/command/alias.py +++ b/setuptools/command/alias.py @@ -6,9 +6,9 @@ from distutils.errors import * from setuptools.command.setopt import edit_config, option_base class alias(option_base): - """Abstract base class for commands that mess with config files""" + """Define a shortcut that invokes one or more commands""" - description = "set an option in setup.cfg or another config file" + description = "define a shortcut to invoke one or more commands" user_options = [ ('alias=', 'a', 'the name of the new pseudo-command'), diff --git a/setuptools/command/rotate.py b/setuptools/command/rotate.py index f7330436..11b6eae8 100755 --- a/setuptools/command/rotate.py +++ b/setuptools/command/rotate.py @@ -7,7 +7,7 @@ from distutils.errors import * class rotate(Command): """Delete older distributions""" - description = "Delete older distributions, keeping N newest files" + description = "delete older distributions, keeping N newest files" user_options = [ ('match=', 'm', "patterns to match (required)"), ('dist-dir=', 'd', "directory where the distributions are"), |