Skip to content

Commit

Permalink
Bump cadCAD Version
Browse files Browse the repository at this point in the history
Signed-off-by: Emanuel Lima <[email protected]>
  • Loading branch information
emanuellima1 committed Apr 11, 2024
1 parent e8114c8 commit f17077f
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions setup.py
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
Expand All @@ -21,7 +23,7 @@
"""

name = "cadCAD"
version = "0.5.1"
version = "0.5.2"

setup(
name=name,
Expand All @@ -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",
)

0 comments on commit f17077f

Please sign in to comment.