comparison venv/lib/python2.7/site-packages/pip/__main__.py @ 0:d67268158946 draft

planemo upload commit a3f181f5f126803c654b3a66dd4e83a48f7e203b
author bcclaywell
date Mon, 12 Oct 2015 17:43:33 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:d67268158946
1 from __future__ import absolute_import
2
3 import os
4 import sys
5
6 # If we are running from a wheel, add the wheel to sys.path
7 # This allows the usage python pip-*.whl/pip install pip-*.whl
8 if __package__ == '':
9 # __file__ is pip-*.whl/pip/__main__.py
10 # first dirname call strips of '/__main__.py', second strips off '/pip'
11 # Resulting path is the name of the wheel itself
12 # Add that to sys.path so we can import pip
13 path = os.path.dirname(os.path.dirname(__file__))
14 sys.path.insert(0, path)
15
16 import pip # noqa
17
18 if __name__ == '__main__':
19 sys.exit(pip.main())