forked from Rhoban/onshape-to-robot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 1.06 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
import setuptools
with open("README-pypi.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="onshape-to-robot",
version="0.3.13",
author="Rhoban team",
author_email="team@rhoban.com",
description="Converting OnShape assembly to robot definition (SDF or URDF) through OnShape API ",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/rhoban/onshape-to-robot/",
packages=setuptools.find_packages(),
scripts=['onshape-to-robot', 'onshape-to-robot-clear-cache'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords="robot robotics cad design onshape bullet pybullet sdf urdf gazebo ros model kinematics",
install_requires=[
"numpy", "pybullet", "requests", "commentjson", "colorama", "numpy-stl", "transforms3d"
],
include_package_data=True,
package_data={'': ['bullet/*', 'README.md']},
python_requires='>=3.6',
)