forked from PatrickBaus/labnode_async
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
84 lines (73 loc) · 2.14 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[project]
name = "labnode-async"
authors = [
{ name="Patrick Baus", email="[email protected]" },
]
description = "Python3 AsyncIO Labnode driver"
readme = "README.md"
license = { text="GNU General Public License v3 (GPLv3)" }
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Home Automation",
"Topic :: Scientific/Engineering",
]
keywords = ["IoT", "PID", "PID controller", "API"]
dependencies = [
"typing-extensions; python_version <'3.11'",
"cbor2",
"cobs",
"pyserial-asyncio",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/PatrickBaus/labnode_async"
"Bug Tracker" = "https://github.com/PatrickBaus/labnode_async/issues"
"Download" = "https://github.com/PatrickBaus/labnode_async/releases"
"Documentation" = "https://patrickbaus.github.io/labnode_async/"
[project.optional-dependencies]
dev = [
"black", "build", "isort", "mypy", "pre-commit", "pylint", "pytest", "twine",
]
doc = [
"myst-parser", "sphinx",
]
test = [
"mypy", "pylint", "pytest",
]
[tool.pylint.'MESSAGES CONTROL']
max-line-length = 120
[tool.pylint.'MISCELLANEOUS']
notes = ["FIXME", "XXX",]
[tool.isort]
line_length = 120
profile = "black"
[tool.black]
line-length = 120
[tool.pytest.ini_options]
markers = [
# conftest.py reorders tests moving slow ones to the end of the list
"slow",
]
[build-system]
requires = [
"setuptools>=61.0",
"typing-extensions; python_version <'3.11'",
"cbor2>=5.6.2",
"cobs",
"pyserial-asyncio",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "labnode_async.__version__"}