mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
17 lines
317 B
Python
17 lines
317 B
Python
#!env python
|
|
# -*- coding=utf-8 -*-
|
|
|
|
from __future__ import absolute_import
|
|
|
|
import os
|
|
import sys
|
|
|
|
from pipenv.vendor.pythonfinder.cli import cli
|
|
|
|
PYTHONFINDER_MAIN = os.path.dirname(os.path.abspath(__file__))
|
|
PYTHONFINDER_PACKAGE = os.path.dirname(PYTHONFINDER_MAIN)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(cli())
|