forked from cadCAD-org/cadCAD
-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:cadCAD-org/cadCAD
- Loading branch information
Showing
3 changed files
with
18 additions
and
5 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
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
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", | ||
) |