Files
pipenv/pipenv/__init__.py
T
kennethreitz fb390662af speed up requests
Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
2017-09-02 17:35:24 -04:00

17 lines
308 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(1, v_path)
from .cli import cli
if __name__ == '__main__':
cli()