comparison lib/python3.8/site-packages/pip/__main__.py @ 0:9e54283cc701 draft

"planemo upload commit d12c32a45bcd441307e632fca6d9af7d60289d44"
author guerler
date Mon, 27 Jul 2020 03:47:31 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:9e54283cc701
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 from pip._internal.cli.main import main as _main # isort:skip # noqa
17
18 if __name__ == '__main__':
19 sys.exit(_main())