-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (74 loc) · 2.06 KB
/
pyproject.toml
File metadata and controls
84 lines (74 loc) · 2.06 KB
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 = "Kraken"
authors = [
{ name="Patrick Baus", email="patrick.baus@physik.tu-darmstadt.de" },
]
description = "Kraken. A sensor aggregation daemon."
readme = "README.md"
license = "GPL-3.0-or-later"
license-files = [
"LICENSE",
]
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"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",
]
keywords = ["IoT", "PID", "PID controller",]
dynamic = ["dependencies", "version"]
[project.urls]
"Homepage" = "https://github.com/TU-Darmstadt-APQ/lab_temperature-Backend"
"Bug Tracker" = "https://github.com/TU-Darmstadt-APQ/lab_temperature-Backend/issues"
"Download" = "https://github.com/TU-Darmstadt-APQ/lab_temperature-Backend/releases"
[tool.pylint.'MESSAGES CONTROL']
max-line-length = 120
[tool.pylint.'MAIN']
load-plugins = "pylint_pydantic"
init-hook='import sys; sys.path.append(".")'
[tool.pylint.'MISCELLANEOUS']
notes = ["FIXME",]
[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>=82.0.1",
]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = [
"black~=26.3.1",
"build~=1.4.3",
"isort~=8.0.1",
"pre_commit~=4.6.0",
"types-simplejson~=3.20.0.20260408",
{include-group = "lint"},
]
lint = [
"mypy~=1.20.1",
"pylint~=4.0.5",
"pylint-pydantic~=0.4.1",
]
test = [
"pytest~=9.0.3",
]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
version = {attr = "_version.__version__"}