-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
36 lines (32 loc) · 1.28 KB
/
pyproject.toml
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
[tool.poetry]
name = "simple-serial-protocol"
version = "0.3.0"
description = "General Purpose Library for the communication between Python applications and Arduino devices. Powered by the usage of resource-efficient and microcontroller-friendly Primitive Dataypes."
authors = ["Albrecht Nitsche <[email protected]>", "Jens Kabisch <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [
# { include = "simple-serial-protocol", from = "src" },
]
repository = 'https://github.com/yesbotics/simple-serial-protocol-python'
homepage = 'https://github.com/yesbotics/simple-serial-protocol-python'
keywords = ["Simple Serial Protocol", "Arduino", "ESP32", "Mikrocontroller", "Robotics"]
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
pyserial = "^3.5"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.0"
pytest-mock = "^3.11.1"
[tool.poetry.scripts]
simple-serial-protocol-example = 'example:main'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"