forked from rail-berkeley/softlearning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (54 loc) · 1.47 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
from distutils.core import setup
from setuptools import find_packages
NAME = 'softlearning'
VERSION = '0.0.1'
DESCRIPTION = (
"Softlearning is a deep reinforcement learning toolbox for training"
" maximum entropy policies in continuous domains.")
setup(
name=NAME,
packages=find_packages(
exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
version=VERSION,
description=DESCRIPTION,
long_description=open('./README.md').read(),
author='Kristian Hartikainen',
author_email='[email protected]',
url='https://github.com/rail-berkeley/softlearning',
keywords=(
'softlearning',
'soft-actor-critic',
'sac',
'soft-q-learning',
'sql',
'machine-learning',
'reinforcement-learning',
'deep-learning',
'robotics',
'tensorflow',
'tensorflow-2',
),
entry_points={
'console_scripts': (
'softlearning=softlearning.scripts.console_scripts:main',
),
},
install_requires=(
'Click>=7.0',
'GitPython==3.1.2',
'dm-control>=0.0.322773188',
'gtimer>=1.0.0b5',
'gym>=0.17.2',
'mujoco-py>=2.0.2.10',
'numpy>=1.17.5',
'pandas',
'ray[tune]>=1.0.0',
'scikit-image>=0.17.2',
'scikit-video>=1.1.11',
'scipy>=1.4.1',
'tensorflow>=2.2.0',
'tensorflow-probability>=0.10.0',
),
zip_safe=True,
license='MIT'
)