Merge pull request #69 from markusbkoch/markusbkoch-patch-1

merge setup.py update
This commit is contained in:
Joshua E. Jodesty 2019-09-16 23:08:50 -04:00 committed by GitHub
commit 5048976f71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 3 deletions

View File

@ -19,7 +19,7 @@ provided.
"""
setup(name='cadCAD',
version='0.3.0',
version='0.3.1',
description="cadCAD: a differential games based simulation software package for research, validation, and \
Computer Aided Design of economic systems",
long_description=long_description,
@ -27,5 +27,13 @@ setup(name='cadCAD',
author='Joshua E. Jodesty',
author_email='joshua@block.science, joshua.jodesty@gmail.com',
license='LICENSE.txt',
packages=find_packages()
)
packages=find_packages(),
install_requires=[
"pandas",
"wheel",
"pathos",
"fn",
"tabulate",
"funcy"
]
)