1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

show what commands are deprecated in pip -h

This commit is contained in:
Marcus Smith 2014-01-11 09:59:26 -08:00
parent 7822931f59
commit 6f56681780
3 changed files with 3 additions and 3 deletions

View file

@ -11,7 +11,7 @@ class BundleCommand(InstallCommand):
name = 'bundle'
usage = """
%prog [options] <bundle name>.pybundle <package>..."""
summary = 'Create pybundles.'
summary = 'DEPRECATED. Create pybundles.'
bundle = True
def __init__(self, *args, **kw):

View file

@ -4,4 +4,4 @@ from pip.commands.zip import ZipCommand
class UnzipCommand(ZipCommand):
"""Unzip individual packages."""
name = 'unzip'
summary = 'Unzip individual packages.'
summary = 'DEPRECATED. Unzip individual packages.'

View file

@ -15,7 +15,7 @@ class ZipCommand(Command):
name = 'zip'
usage = """
%prog [options] <package> ..."""
summary = 'Zip individual packages.'
summary = 'DEPRECATED. Zip individual packages.'
def __init__(self, *args, **kw):
super(ZipCommand, self).__init__(*args, **kw)