-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
36 lines (34 loc) · 1.35 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
29
30
31
32
33
34
35
36
from setuptools import find_packages, setup
long_description = """
Robust Arduino Serial is a simple and robust serial communication protocol.
It was designed to make two arduinos communicate,
but can also be useful when you want a computer (e.g. a Raspberry Pi) to communicate with an Arduino.
https://medium.com/@araffin/simple-and-robust-computer-arduino-serial-communication-f91b95596788
"""
setup(
name="robust_serial",
packages=[package for package in find_packages() if package.startswith("robust_serial")],
install_requires=[
"pyserial",
],
extras_require={
"tests": ["pytest", "pytest-cov", "mypy", "ruff", "black", "isort"],
"docs": ["sphinx", "sphinx_rtd_theme", "sphinx-autodoc-typehints"],
},
author="Antonin RAFFIN",
author_email="[email protected]",
url="https://github.com/araffin/arduino-robust-serial",
description="Simple and Robust Serial Communication Protocol",
long_description=long_description,
keywords="serial hardware arduino RS232 communication protocol raspberry",
license="MIT",
version="0.2",
python_requires=">=3.8",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
zip_safe=False,
)