forked from MrYsLab/pymata-aio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 1.07 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
from setuptools import setup
setup(
name='pymata-aio',
version='2.19',
packages=['pymata_aio'],
install_requires=['pyserial==2.7', 'websockets'],
url='https://github.com/MrYsLab/pymata-aio/wiki',
download_url='https://github.com/MrYsLab/pymata-aio',
license='GNU General Public License v3 (GPLv3)',
author='Alan Yorinks',
author_email='MisterYsLab@gmail.com',
description='A Python Protocol Abstraction Library For Arduino Firmata using Python asyncio',
keywords=['Firmata', 'Arduino', 'Protocol'],
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.5',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Utilities',
'Topic :: Education',
'Topic :: Home Automation',
],
)