-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 882 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (23 loc) · 882 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
from setuptools import setup
setup(
name = 'lcus-usb-relay-module-controller',
version = '0.2.0',
author = 'Pebble94464',
author_email = 'jsn-usb2serial@pebble.plus.com',
license = 'MIT License',
url='https://github.com/Pebble94464/lcus-usb-relay-module-controller',
description=('A module for controlling a USB to serial relay board'),
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
keywords = ('usb-relay lcus-1 lcus-2 lcus-4 lcus-8 '),
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: System :: Hardware :: Universal Serial Bus (USB)',
],
packages=['lcus_usb_relay_module_controller'],
install_requires=['pyserial>2']
)