├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── pipshow ├── __init__.py └── pipshow.py ├── screenshot.png └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prahladyeri/pipshow/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prahladyeri/pipshow/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prahladyeri/pipshow/HEAD/README.md -------------------------------------------------------------------------------- /pipshow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prahladyeri/pipshow/HEAD/pipshow/__init__.py -------------------------------------------------------------------------------- /pipshow/pipshow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prahladyeri/pipshow/HEAD/pipshow/pipshow.py -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prahladyeri/pipshow/HEAD/screenshot.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prahladyeri/pipshow/HEAD/setup.py --------------------------------------------------------------------------------