forked from kmh8667/robo-gym
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 1.04 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
import setuptools
import sys, os
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'robo_gym'))
from version import VERSION
setuptools.setup(name='robo-gym',
version=VERSION,
description='robo-gym: an open source toolkit for Distributed Deep Reinforcement Learning on real and simulated robots.',
url='https://github.com/jr-robotics/robo-gym',
author="Matteo Lucchi, Friedemann Zindler",
author_email="matteo.lucchi@joanneum.at, friedemann.zindler@joanneum.at",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
install_requires=[
'gym',
'robo-gym-server-modules',
'numpy',
'scipy',
'pyyaml'
],
python_requires='>=3.6',
scripts = ['bin/run-rs-side-standard']
)