-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·57 lines (52 loc) · 1.71 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
##############################################
# The MIT License (MIT)
# Copyright (c) 2016 Kevin Walchko
# see LICENSE for full details
##############################################
from __future__ import print_function
from setuptools import setup
from pyxl320.version import __version__ as VERSION
from build_utils import BuildCommand
from build_utils import PublishCommand
from build_utils import BinaryDistribution
PACKAGE_NAME = 'pyxl320'
BuildCommand.pkg = PACKAGE_NAME
PublishCommand.pkg = PACKAGE_NAME
PublishCommand.version = VERSION
setup(
author='Kevin Walchko',
author_email='walchko@users.noreply.github.com',
name=PACKAGE_NAME,
version=VERSION,
description='A library to control dynamixel XL-320 servos with python',
long_description=open('README.rst').read(),
url='http://github.com/walchko/{}'.format(PACKAGE_NAME),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries :: Application Frameworks'
],
license='MIT',
keywords=['dynamixel', 'xl320', 'xl-320', 'servo', 'actuator', 'library', 'robotics', 'robot', 'smart', 'spider'],
packages=[PACKAGE_NAME],
install_requires=open('requirements.txt').readlines(),
cmdclass={
'publish': PublishCommand,
'make': BuildCommand
},
scripts=[
'bin/set_id.py',
'bin/servo_ping.py',
'bin/set_angle.py',
'bin/set_baud_rate.py',
'bin/servo_reboot.py',
'bin/servo_reset.py',
'bin/get_angle.py'
]
)