Made an application for supporting sustainable local businesses in San Pancho.
Never really got completed, but it has some useful Svelte components for maps that we can reuse.
http://greenspots.dctrl.space
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
632 B
19 lines
632 B
from __future__ import absolute_import |
|
|
|
import os |
|
import sys |
|
|
|
# If we are running from a wheel, add the wheel to sys.path |
|
# This allows the usage python pip-*.whl/pip install pip-*.whl |
|
if __package__ == '': |
|
# __file__ is pip-*.whl/pip/__main__.py |
|
# first dirname call strips of '/__main__.py', second strips off '/pip' |
|
# Resulting path is the name of the wheel itself |
|
# Add that to sys.path so we can import pip |
|
path = os.path.dirname(os.path.dirname(__file__)) |
|
sys.path.insert(0, path) |
|
|
|
from pip._internal.cli.main import main as _main # isort:skip # noqa |
|
|
|
if __name__ == '__main__': |
|
sys.exit(_main())
|
|
|