-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 800 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
from setuptools import setup
if __name__ == '__main__':
setup(
name='surrol',
version='0.1.0',
description='SurRoL: An Open-source Reinforcement Learning Centered and '
'dVRK Compatible Platform for Surgical Robot Learning',
author='Med-AIR@CUHK',
keywords='simulation, medical robotics, dVRK, reinforcement learning',
packages=[
'surrol',
],
install_requires=[
"gym>=0.15.6",
"pybullet>=3.0.7",
"numpy>=1.21.1",
"scipy",
"pandas",
"imageio",
"imageio-ffmpeg",
"opencv-python",
"roboticstoolbox-python",
"torch",
"hydra-core",
"termcolor"
]
)