forked from slightlynybbled/SerialDispatch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 1014 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (26 loc) · 1014 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
27
from setuptools import setup, find_packages
setup(name='serialdispatch',
version ='0.13',
url='https://github.com/slightlynybbled/SerialDispatch',
description='Easy serial communication using Dispatch',
author='Jason Jones',
author_email='slightlynybbled@gmail.com',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Topic :: System :: Hardware',
'Topic :: System :: Monitoring',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
],
license='MIT',
packages=find_packages(),
install_requires=['pyserial'],
zip_safe=False
)