-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
89 lines (78 loc) · 2.43 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
from setuptools import setup
packages = \
['mdp_playground',
'mdp_playground.analysis',
'mdp_playground.config_processor',
'mdp_playground.envs',
'mdp_playground.scripts',
'mdp_playground.spaces']
package_data = \
{'': ['*']}
extras_require = [
'ray[rllib,debug]==0.7.3',
'tensorflow==1.13.0rc1',
'pillow==6.1.0',
'pandas==0.25.0',
'requests==2.22.0',
'configspace==0.4.10',
'scipy==1.3.0',
'pandas==0.25.0',
]
extras_require_cont = [
# 'ray[rllib,debug]==0.9.0',
'tensorflow==2.2.0',
'tensorflow-probability==0.9.0',
'pandas==0.25.0',
'requests==2.22.0',
'mujoco-py==2.0.2.13', # with mujoco 2.0
'configspace>=0.4.10',
'scipy>=1.3.0',
'pandas==0.25.0',
]
AUTHORS = ', '.join(["Raghu Rajan", "Jessica Borja",
"Suresh Guttikonda", "Fabio Ferreira",
"Jan Ole von Hartz",
"André Biedenkapp", "Frank Hutter",
]),
AUTHOR_EMAIL = '[email protected]'
LICENSE = 'Apache License, Version 2.0'
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='mdp-playground',
version='0.0.6',
author=AUTHORS,
author_email=AUTHOR_EMAIL,
description="A python package to design and debug RL agents",
long_description=long_description,
long_description_content_type="text/markdown",
license=LICENSE,
url="https://github.com/automl/mdp-playground",
project_urls={
"Bug Tracker": "https://github.com/automl/mdp-playground/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
'Natural Language :: English',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
# 'Topic :: Scientific/Engineering :: Machine Learning',
# 'Topic :: Scientific/Engineering :: Reinforcement Learning', invalid classifiers on Pypi
],
# package_dir={"": "src"},
python_requires=">=3.6",
install_requires=['gym<=0.14', 'dill'],
extras_require={
'extras_disc': extras_require,
'extras_cont': extras_require_cont,
},
entry_points={
'console_scripts': """
run-mdpp-experiments = mdp_playground.scripts.run_experiments:main
"""
}
)