Metadata-Version: 1.1
Name: pip-autoremove
Version: 0.4.0
Summary: Remove a package and its unused dependencies
Home-page: https://github.com/invl/pip-autoremove
Author: UNKNOWN
Author-email: UNKNOWN
License: Apache License 2.0
Description: pip-autoremove
        ==============
        
        .. image:: https://pypip.in/d/pip-autoremove/badge.png
                :target: https://pypi.python.org/pypi/pip-autoremove/
        
        .. image:: https://pypip.in/v/pip-autoremove/badge.png
                :target: https://pypi.python.org/pypi/pip-autoremove/
        
        .. image:: https://pypip.in/license/pip-autoremove/badge.png
                :target: https://pypi.python.org/pypi/pip-autoremove/
        
        
        Remove a package and its unused dependencies.
        
        
        Usage
        -----
        
        .. code-block:: sh
        
            $ pip install Flask
        
            ...
            Installing collected packages: Flask, Werkzeug, Jinja2, itsdangerous, markupsafe
            ...
            Successfully installed Flask Werkzeug Jinja2 itsdangerous markupsafe
            Cleaning up...
        
        
        .. code-block:: sh
        
            $ pip-autoremove Flask -y
        
            Uninstalling:
             Flask 0.10.1 (/tmp/pip-autoremove/.venv/lib/python2.7/site-packages)
                 Werkzeug 0.9.6 (/tmp/pip-autoremove/.venv/lib/python2.7/site-packages)
                 Jinja2 2.7.3 (/tmp/pip-autoremove/.venv/lib/python2.7/site-packages)
                     MarkupSafe 0.23 (/tmp/pip-autoremove/.venv/lib/python2.7/site-packages)
                 itsdangerous 0.24 (/tmp/pip-autoremove/.venv/lib/python2.7/site-packages)
        
            Uninstalling MarkupSafe:
              Successfully uninstalled MarkupSafe
            Uninstalling Jinja2:
              Successfully uninstalled Jinja2
            Uninstalling itsdangerous:
              Successfully uninstalled itsdangerous
            Uninstalling Werkzeug:
              Successfully uninstalled Werkzeug
            Uninstalling Flask:
              Successfully uninstalled Flask
        
        
        Installation
        ------------
        
        .. code-block:: sh
        
            $ pip install pip-autoremove
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
