-
Notifications
You must be signed in to change notification settings - Fork 35
/
setup.py
27 lines (25 loc) · 1.1 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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name = 'pySerialTransfer',
packages = ['pySerialTransfer'],
version = '2.6.10',
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.6.10.tar.gz',
keywords = ['Arduino', 'serial', 'usb', 'protocol', 'communication'],
classifiers = [],
install_requires = ['pyserial'],
extras_require = {
'dev': [
'pytest>=8.1.1',
'pytest-cov>=5.0.0',
'pytest-mock>=3.14.0',
],
},
)