summaryrefslogtreecommitdiff
path: root/lib/python2.7/site-packages/pip-0.8.1-py2.7.egg/pip/commands/unzip.py
blob: f83e182059e35bb7516a7e080d4a0239f6eafaaf (plain)
1
2
3
4
5
6
7
8
9
from pip.commands.zip import ZipCommand


class UnzipCommand(ZipCommand):
    name = 'unzip'
    summary = 'Unzip individual packages'


UnzipCommand()