forked from ROBOTIS-GIT/DynamixelSDK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (21 loc) · 666 Bytes
/
setup.py
File metadata and controls
26 lines (21 loc) · 666 Bytes
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
from setuptools import setup, find_packages
import platform
authors_info = [
('Leon Jung', '[email protected]'),
('Wonho Yun', '[email protected]'),
]
authors = ', '.join(author for author, _ in authors_info)
author_emails = ', '.join(email for _, email in authors_info)
setup(
name='dynamixel_sdk',
version='3.8.4',
packages=['dynamixel_sdk'],
package_dir={'': 'src'},
license='Apache 2.0',
description='Dynamixel SDK 3. python package',
long_description=open('README.txt').read(),
url='https://github.com/ROBOTIS-GIT/DynamixelSDK',
author=authors,
author_email=author_emails,
install_requires=['pyserial']
)