-
-
Notifications
You must be signed in to change notification settings - Fork 271
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Emanuel Lima <[email protected]>
- Loading branch information
1 parent
e8114c8
commit f17077f
Showing
1 changed file
with
14 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
from setuptools import find_packages, setup | ||
|
||
short_description = "cadCAD: a differential games based simulation software package for research, validation, and \ | ||
short_description = ( | ||
"cadCAD: a differential games based simulation software package for research, validation, and \ | ||
Computer Aided Design of economic systems" | ||
) | ||
|
||
long_description = """ | ||
cadCAD (complex adaptive systems computer-aided design) is a python based, unified modeling framework for stochastic | ||
|
@@ -21,7 +23,7 @@ | |
""" | ||
|
||
name = "cadCAD" | ||
version = "0.5.1" | ||
version = "0.5.2" | ||
|
||
setup( | ||
name=name, | ||
|
@@ -33,6 +35,15 @@ | |
author_email="[email protected]", | ||
license="LICENSE.txt", | ||
packages=find_packages(), | ||
install_requires=["pandas", "funcy", "dill", "pathos", "numpy", "pytz", "six", "tqdm"], | ||
install_requires=[ | ||
"pandas", | ||
"funcy", | ||
"dill", | ||
"pathos", | ||
"numpy", | ||
"pytz", | ||
"six", | ||
"tqdm", | ||
], | ||
python_requires=">=3.9.0", | ||
) |