forked from infer-actively/pymdp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (63 loc) · 1.62 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import setuptools
setuptools.setup(
name="inferactively-pymdp",
version="0.0.4",
author="infer-actively",
author_email="[email protected]",
description= ("A Python package for solving Markov Decision Processes with Active Inference"),
license='MIT',
url="https://github.com/infer-actively/pymdp",
python_requires='>3.7',
install_requires =[
'attrs>=20.3.0',
'cycler>=0.10.0',
'iniconfig>=1.1.1',
'kiwisolver>=1.3.1',
'matplotlib>=3.1.3',
'nose>=1.3.7',
'numpy>=1.19.5',
'openpyxl>=3.0.7',
'packaging>=20.8',
'pandas>=1.2.4',
'Pillow>=8.2.0'
'pluggy>=0.13.1',
'py>=1.10.0',
'pyparsing>=2.4.7',
'pytest>=6.2.1',
'python-dateutil>=2.8.1',
'pytz>=2020.5',
'scipy>=1.6.0',
'seaborn>=0.11.1',
'six>=1.15.0',
'toml>=0.10.2',
'typing-extensions>=3.7.4.3',
'xlsxwriter>=1.4.3',
'sphinx-rtd-theme>=0.4',
'myst-nb>=0.13.1'
],
packages=[
"pymdp",
"pymdp.envs",
"pymdp.algos"
],
include_package_data=True,
keywords=[
"artificial intelligence",
"active inference",
"free energy principle"
"information theory",
"decision-making",
"MDP",
"Markov Decision Process",
"Bayesian inference",
"variational inference",
"reinforcement learning"
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
],
)