├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── setup.py └── vendy ├── __init__.py ├── __main__.py └── third_party ├── __init__.py └── pip ├── LICENSE ├── __init__.py └── from_pip.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/di/vendy/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/di/vendy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/di/vendy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/di/vendy/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/di/vendy/HEAD/setup.py -------------------------------------------------------------------------------- /vendy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/di/vendy/HEAD/vendy/__init__.py -------------------------------------------------------------------------------- /vendy/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/di/vendy/HEAD/vendy/__main__.py -------------------------------------------------------------------------------- /vendy/third_party/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendy/third_party/pip/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/di/vendy/HEAD/vendy/third_party/pip/LICENSE -------------------------------------------------------------------------------- /vendy/third_party/pip/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendy/third_party/pip/from_pip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/di/vendy/HEAD/vendy/third_party/pip/from_pip.py --------------------------------------------------------------------------------