Files
pipenv/pipenv/__init__.py
T
kennethreitz 7b4286d618 patched directory
Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
2017-09-14 20:43:34 -04:00

21 lines
465 B
Python

# |~~\' |~~
# |__/||~~\|--|/~\\ /
# | ||__/|__| |\/
# |
import os
import sys
# Inject vendored directory into system path.
v_path = os.path.sep.join([os.path.dirname(os.path.realpath(__file__)), 'vendor'])
sys.path.insert(0, v_path)
# Inject patched directory into system path.
v_path = os.path.sep.join([os.path.dirname(os.path.realpath(__file__)), 'patched'])
sys.path.insert(0, v_path)
from .cli import cli
if __name__ == '__main__':
cli()