This commit is contained in:
2017-01-21 13:50:50 -05:00
parent 2753bdbf92
commit 4b9ef3c279
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ import pexpect
import toml
import _pipfile as pipfile
__version__ = '0.1.3'
__version__ = '0.1.4'
class Project(object):
"""docstring for Project"""
+2 -2
View File
@@ -36,13 +36,13 @@ required = [
setup(
name='pipenv',
version='0.1.3',
version='0.1.4',
description='Sacred Marriage of Pipfile, Pip, & Virtualenv.',
long_description=long_description,
author='Kenneth Reitz',
author_email='me@kennethreitz.com',
url='https://github.com/kennethreitz/pipenv',
packages=['pipenv'],
packages=['pipenv', 'pipenv._pipfile'],
entry_points={
'console_scripts': ['pipenv=pipenv:cli'],
},