-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
33 lines (30 loc) · 959 Bytes
/
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
#!/usr/bin/env python
import sys
from setuptools import setup, find_packages
setup(name='simmechanics_to_urdf',
version='0.4.2',
description='Converts SimMechanics XML to URDF',
author='Silvio Traversaro, David V. Lu',
author_email='pegua1@gmail.com',
url='https://github.com/robotology/simmechanics-to-urdf',
packages=['simmechanics_to_urdf'],
licence='BSD',
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3'
],
install_requires=[
"lxml",
"numpy",
"PyYAML >= 3.10"
],
entry_points={
'console_scripts': [
'simmechanics_to_urdf = simmechanics_to_urdf.firstgen:main',
]
}
)