-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 877 Bytes
/
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
from setuptools import setup
reqs=[
"garage==2019.10.1", # Use version 2019 as newer version auto import mujoco envs making reproduction study without a license impossible
"scipy",
"numpy",
"dowel",
"matplotlib",
"tqdm",
"attr",
"sacred",
"hashfs",
"tinydb-serialization",
"raylib",
"seaborn",
"jupyter",
"ipython",
"ipdb",
"termcolor",
"visdom",
"pygame",
"click"
]
setup(
name='deepmdp',
version='0.1.9',
packages=['deepmdp', 'deepmdp.experiments', 'deepmdp.garage_mod', 'deepmdp.garage_mod.algos',
'deepmdp.garage_mod.env_wrappers', 'deepmdp.garage_mod.policies', 'deepmdp.garage_mod.q_functions',
'deepmdp.garage_mod.exploration_strategies'],
url='',
license='',
author='',
author_email='',
description='',
install_requires=reqs
)