Metadata-Version: 2.1
Name: pip3-autoremove
Version: 0.10.1
Summary: Remove a package and its unused dependencies(Supports Python3)
Home-page: https://github.com/mrmarvel/pip3-autoremove
License: Apache License 2.0
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
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
Classifier: Programming Language :: Python :: Implementation :: PyPy
Description-Content-Type: text/markdown
License-File: LICENSE

# pip3-autoremove


* This repository based on
  * https://github.com/enjoysoftware/pip3-autoremove
  * https://github.com/tresni/pip-autoremove
  * and https://github.com/invl/pip-autoremove

Remove a package and its unused dependencies.  
Supports both Python2 and Python3.

This version also can remove packages listed in file 
like 'requirements.txt'.

## How to install
* How to install pip3-autoremove for Python3:
```
sudo pip3 install pip3-autoremove
```

* How to install pip3-autoremove for Python2:
```
sudo pip install pip3-autoremove
```

## Usage
```
pip-autoremove packages-to-uninstall
pip3-autoremove packages-to-uninstall
pip-autoremove -r requirements.txt
```

To remove the globally installed package, add "sudo" before the pip-autoremove command.
