From 322c7d4b7ee70c77d06747d8555786bdcf412eb9 Mon Sep 17 00:00:00 2001 From: Erwin Coumans Date: Tue, 4 Apr 2017 00:01:12 -0700 Subject: [PATCH] add missing files in pip, bump version --- MANIFEST.in | 9 +++++++++ setup.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index d1f43f9e1..f81f5f520 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -5,3 +5,12 @@ recursive-include Extras *.h recursive-include Extras *.hpp recursive-include src *.h recursive-include src *.hpp +include examples/ThirdPartyLibs/enet/unix.c +include examples/OpenGLWindow/X11OpenGLWindow.cpp +include examples/ThirdPartyLibs/Glew/glew.c +include examples/ThirdPartyLibs/enet/win32.c +include examples/OpenGLWindow/Win32Window.cpp +include examples/OpenGLWindow/Win32OpenGLWindow.cpp +include examples/ThirdPartyLibs/Glew/glew.c +include examples/OpenGLWindow/MacOpenGLWindow.cpp +include examples/OpenGLWindow/MacOpenGLWindowObjC.m diff --git a/setup.py b/setup.py index 2398448da..293949fc4 100644 --- a/setup.py +++ b/setup.py @@ -386,7 +386,7 @@ elif _platform == "darwin": setup( name = 'pybullet', - version='0.1.4', + version='0.1.5', 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',