forked from befelix/Safe-RL-Benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 903 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (31 loc) · 903 Bytes
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
from setuptools import setup
setup(
name='SafeRLBench',
version='1.0.1',
author='Nicolas Ochsner',
author_email='ochsnern@student.ethz.ch',
packages=[
'SafeRLBench',
'SafeRLBench.algo',
'SafeRLBench.envs',
'SafeRLBench.spaces',
'SafeRLBench.policy',
],
description='Safe Reinforcement Learning Benchmark',
keywords='reinforcement-learning benchmark',
url='https://github.com/befelix/Safe-RL-Benchmark',
install_requires=[
'numpy >= 1.7',
'scipy >= 0.19.0',
'six >= 1.10',
'futures >= 3.0.5;python_version<"3.2"'
],
extras_require={
'gym': ['gym >= 0.8.0'],
'safeopt': ['GPy >= 1.6.1', 'safeopt >= 0.1'],
'neural': ['tensorflow >= 1.0.0'],
},
dependency_links=[
'git+https://github.com/befelix/SafeOpt/tarball/master#egg=safeopt-0.1'
],
)