forked from iandanforth/pydynamixel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·30 lines (26 loc) · 923 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
#!/usr/bin/python
from dynamixel import __version__
sdict = {
'name': 'dynamixel',
'version': __version__,
'description': "Dynamixel Servo Library",
'url': 'http://github.com/iandanforth/pydynamixel',
'download_url': 'http://cloud.github.com/downloads/iandanforth/pydynamixel/dynamixel-%s.tar.gz' % __version__,
'author': 'Patrick Goebel',
'author_email': '[email protected]',
'maintainer': 'Ian Danforth',
'maintainer_email': '[email protected]',
'keywords': ['dynamixel', 'robotis', 'ax-12'],
'license': 'GPL',
'packages': ['dynamixel'],
'classifiers': [
'Environment :: Console',
'Intended Audience :: Developers',
'Programming Language :: Python'],
'install_requires': ['pyyaml>=2.0']
}
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(**sdict)