Files
pipenv/setup.py
T
2017-01-23 13:47:01 -05:00

62 lines
1.6 KiB
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import codecs
import os
import sys
from os.path import dirname
from setuptools import setup
here = os.path.abspath(dirname(__file__))
with codecs.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = '\n' + f.read()
if sys.argv[-1] == "publish":
os.system("python setup.py sdist bdist_wheel upload")
sys.exit()
required = [
'crayons',
'toml',
'click',
'pip',
'virtualenv',
'delegator.py>=0.0.6',
'requirements-parser'
]
# Backport required for earlier versions of Python.
if sys.version_info < (3, 3):
required.append('backports.shutil_get_terminal_size')
setup(
name='pipenv',
version='0.2.4',
description='Sacred Marriage of Pipfile, Pip, & Virtualenv.',
long_description=long_description,
author='Kenneth Reitz',
author_email='me@kennethreitz.org',
url='https://github.com/kennethreitz/pipenv',
packages=['pipenv', 'pipenv._pipfile'],
entry_points={
'console_scripts': ['pipenv=pipenv:cli'],
},
install_requires=required,
license='MIT',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
],
)