pybullet a bit more refactoring, moving around files.

pybullet: move data to pybullet_data package, with getDataPath() method
This commit is contained in:
Erwin Coumans
2017-08-27 18:08:46 -07:00
parent 97cb6df00c
commit 659e869b86
185 changed files with 149 additions and 68 deletions

View File

@@ -421,7 +421,7 @@ else:
setup_py_dir = os.path.dirname(os.path.realpath(__file__))
need_files = []
datadir = "examples/pybullet/gym/pybullet_envs"
datadir = "examples/pybullet/gym/pybullet_data"
hh = setup_py_dir + "/" + datadir
@@ -440,7 +440,7 @@ print("-----")
setup(
name = 'pybullet',
version='1.2.6',
version='1.2.7',
description='Official Python Interface for the Bullet Physics SDK Robotics Simulator',
long_description='pybullet is an easy to use Python module for physics simulation, robotics and machine learning based on the Bullet Physics SDK. With pybullet you can load articulated bodies from URDF, SDF and other file formats. pybullet provides forward dynamics simulation, inverse dynamics computation, forward and inverse kinematics and collision detection and ray intersection queries. Aside from physics simulation, pybullet supports to rendering, with a CPU renderer and OpenGL visualization and support for virtual reality headsets.',
url='https://github.com/bulletphysics/bullet3',
@@ -470,6 +470,6 @@ setup(
'Framework :: Robot Framework'],
package_dir = { '': 'examples/pybullet/gym'},
packages=[x for x in find_packages('examples/pybullet/gym')],
package_data = { 'pybullet_envs': need_files }
package_data = { 'pybullet_data': need_files }
)