-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathsetup.py
20 lines (18 loc) · 960 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name = 'pySerialTransfer',
packages = ['pySerialTransfer'],
version = '2.1.6',
description = 'Python package used to transmit and receive low overhead byte packets - especially useful for PC<-->Arduino USB communication (compatible with https://github.com/PowerBroker2/SerialTransfer)',
long_description = long_description,
long_description_content_type = "text/markdown",
author = 'Power_Broker',
author_email = '[email protected]',
url = 'https://github.com/PowerBroker2/pySerialTransfer',
download_url = 'https://github.com/PowerBroker2/pySerialTransfer/archive/2.1.6.tar.gz',
keywords = ['Arduino', 'serial', 'usb', 'protocol', 'communication'],
classifiers = [],
install_requires = ['pyserial']
)