forked from softbankrobotics-research/qibullet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (54 loc) · 1.97 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
import setuptools
with open("README.md", "r") as fh:
readme = fh.read()
readme = readme[:readme.index("<!-- start -->")] +\
readme[(readme.index("<!-- end -->") + len("<!-- end -->")):]
setuptools.setup(
name="qibullet",
version="1.1.4.1",
author="Maxime Busy, Maxime Caniot",
author_email="",
description="Bullet-based simulation for SoftBank Robotics' robots",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/ProtolabSBRE/qibullet",
packages=setuptools.find_packages(),
install_requires=['numpy', 'pybullet'],
package_data={"qibullet": [
"robot_data/pepper_1.7/*.urdf",
"robot_data/pepper_1.7/meshes/*.obj",
"robot_data/pepper_1.7/meshes/*.mtl",
"robot_data/pepper_1.7/meshes/*.dae",
"robot_data/pepper_1.7/meshes/*.stl",
"robot_data/pepper_1.7/meshes/*.png",
"robot_data/nao_V40/*.urdf",
"robot_data/nao_V40/meshes/*.obj",
"robot_data/nao_V40/meshes/*.mtl",
"robot_data/nao_V40/meshes/*.dae",
"robot_data/nao_V40/meshes/*.stl",
"robot_data/nao_V40/meshes/*.png"]},
keywords=[
'physics simulation',
'robotics',
'naoqi',
'softbank',
'pepper',
'nao',
'romeo',
'robot'],
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft",
'Topic :: Games/Entertainment :: Simulation',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Framework :: Robot Framework :: Tool'
]
)