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
13 changed files
with
380 additions
and
239 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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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,45 +1,38 @@ | ||
from setuptools import setup, find_packages | ||
from setuptools import find_packages, setup | ||
|
||
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 | ||
dynamical systems and differential games for research, validation, and Computer Aided Design of economic systems created | ||
by BlockScience. It is capable of modeling systems at all levels of abstraction from Agent Based Modeling (ABM) to | ||
System Dynamics (SD), and enabling smooth integration of computational social science simulations with empirical data | ||
cadCAD (complex adaptive systems computer-aided design) is a python based, unified modeling framework for stochastic | ||
dynamical systems and differential games for research, validation, and Computer Aided Design of economic systems created | ||
by BlockScience. It is capable of modeling systems at all levels of abstraction from Agent Based Modeling (ABM) to | ||
System Dynamics (SD), and enabling smooth integration of computational social science simulations with empirical data | ||
science workflows. | ||
An economic system is treated as a state-based model and defined through a set of endogenous and exogenous state | ||
variables which are updated through mechanisms and environmental processes, respectively. Behavioral models, which may | ||
be deterministic or stochastic, provide the evolution of the system within the action space of the mechanisms. | ||
Mathematical formulations of these economic games treat agent utility as derived from the state rather than direct from | ||
an action, creating a rich, dynamic modeling framework. Simulations may be run with a range of initial conditions and | ||
parameters for states, behaviors, mechanisms, and environmental processes to understand and visualize network behavior | ||
under various conditions. Support for A/B testing policies, Monte Carlo analysis, and other common numerical methods is | ||
An economic system is treated as a state-based model and defined through a set of endogenous and exogenous state | ||
variables which are updated through mechanisms and environmental processes, respectively. Behavioral models, which may | ||
be deterministic or stochastic, provide the evolution of the system within the action space of the mechanisms. | ||
Mathematical formulations of these economic games treat agent utility as derived from the state rather than direct from | ||
an action, creating a rich, dynamic modeling framework. Simulations may be run with a range of initial conditions and | ||
parameters for states, behaviors, mechanisms, and environmental processes to understand and visualize network behavior | ||
under various conditions. Support for A/B testing policies, Monte Carlo analysis, and other common numerical methods is | ||
provided. | ||
""" | ||
|
||
name = "cadCAD" | ||
version = "0.5.0" | ||
version = "0.5.1" | ||
|
||
setup(name=name, | ||
version=version, | ||
description=short_description, | ||
long_description=long_description, | ||
url='https://github.com/cadCAD-org/cadCAD', | ||
author='cadCAD-org Developers', | ||
author_email='[email protected]', | ||
license='LICENSE.txt', | ||
packages=find_packages(), | ||
install_requires=[ | ||
"pandas", | ||
"funcy", | ||
"dill", | ||
"pathos", | ||
"numpy", | ||
"pytz", | ||
"six" | ||
], | ||
python_requires='>=3.8.0' | ||
) | ||
setup( | ||
name=name, | ||
version=version, | ||
description=short_description, | ||
long_description=long_description, | ||
url="https://github.com/cadCAD-org/cadCAD", | ||
author="cadCAD-org Developers", | ||
author_email="[email protected]", | ||
license="LICENSE.txt", | ||
packages=find_packages(), | ||
install_requires=["pandas", "funcy", "dill", "pathos", "numpy", "pytz", "six"], | ||
python_requires=">=3.9.0", | ||
) |
Oops, something went wrong.