forked from stepjam/RLBench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 849 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
from distutils.core import setup
# Version meaning (X.Y.Z)
# X: Major version (e.g. vastly different scene, platform, etc)
# Y: Minor version (e.g. new tasks, major changes to existing tasks, etc)
# Z: Patch version (e.g. small changes to tasks, bug fixes, etc)
setup(name='rlbench',
version='1.0.6',
description='RLBench',
author='Stephen James',
author_email='[email protected]',
url='https://www.doc.ic.ac.uk/~slj12',
packages=[
'rlbench',
'rlbench.backend',
'rlbench.tasks',
'rlbench.task_ttms',
'rlbench.robot_ttms',
'rlbench.sim2real',
'rlbench.assets',
'rlbench.gym'
],
package_data={'': ['*.ttm', '*.obj', '**/**/*.ttm', '**/**/*.obj'],
'rlbench': ['task_design.ttt']},
)