├── .gitignore ├── LICENSE ├── README.md ├── bin └── brew-pip └── tests.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | README.html 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxue/brew-pip/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxue/brew-pip/HEAD/README.md -------------------------------------------------------------------------------- /bin/brew-pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxue/brew-pip/HEAD/bin/brew-pip -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanxue/brew-pip/HEAD/tests.py --------------------------------------------------------------------------------