forked from MrYsLab/pymata4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (29 loc) · 1.12 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
#!/usr/bin/env python3
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(
name='pymata4',
packages=['pymata4'],
install_requires=['pyserial'],
version='1.15',
description="A Python Protocol Abstraction Library For Arduino Firmata",
long_description=long_description,
long_description_content_type='text/markdown',
author='Alan Yorinks',
author_email='[email protected]',
url='https://github.com/MrYsLab/pymata4',
download_url='https://github.com/MrYsLab/pymata4',
keywords=['Firmata', 'Arduino', 'Protocol', 'Python'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)