forked from IanYangChina/pybullet_multigoal_gym
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 1.27 KB
/
setup.py
File metadata and controls
32 lines (29 loc) · 1.27 KB
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
import os
from setuptools import setup, find_packages
packages = find_packages()
# Ensure that we don't pollute the global namespace.
for p in packages:
assert p == 'pybullet_multigoal_gym' or p.startswith('pybullet_multigoal_gym.')
setup(name='pybullet-multigoal-gym',
version='1.0.0',
description='A migration of the OpenAI Gym multi-goal robotic environment based on pybullet. Based on XintongYang\'s implementation.',
url='#',
author='ddd26, mbg34, nyl25, sd974 and XintongYang',
author_email='author@cam.ac.uk',
packages=packages,
package_dir={'pybullet_multigoal_gym': 'pybullet_multigoal_gym'},
package_data={'pybullet_multigoal_gym': [
'assets/objects/*.urdf',
'assets/objects/assembling_shape/*.urdf',
'assets/objects/insertion/*.urdf',
'assets/robots/*.urdf',
'assets/robots/kuka/*.urdf',
'assets/robots/kuka/meshes/iiwa14/collision/*.stl',
'assets/robots/kuka/meshes/iiwa14/visual/*.stl',
'assets/robots/kuka/meshes/robotiq_2f_85/collision/*.stl',
'assets/robots/kuka/meshes/robotiq_2f_85/visual/*.dae',
]},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
])