-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
25 lines (23 loc) · 886 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
from setuptools import setup
with open("README.md", "r", encoding = "utf-8") as fh:
long_description = fh.read()
setup(
name='feetech-servo-sdk',
version='1.0.0',
packages=['scservo_sdk'],
url='https://github.com/Adam-Software/FEETECH-Servo-Python-SDK',
license='UNLICENSE',
author='vertigra',
author_email='a@nesterof.com',
description='This is source code from official feetech repository',
long_description_content_type="text/markdown",
long_description=long_description,
install_requires=['pyserial'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: The Unlicense (Unlicense)',
'Operating System :: POSIX :: Other',
'Programming Language :: Python :: 3',
'Topic :: System :: Hardware :: Universal Serial Bus (USB) :: Communications Device Class (CDC)'
]
)