-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
77 lines (66 loc) · 1.81 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "luxtronik"
version = "0.0.0-dev"
license = {text = "MIT"}
readme = "README.md"
authors = [
{name = "Bouni", email = "bouni-luxtronik@owee.de"}
]
description = "A luxtronik heatpump controller interface"
keywords = ["heatpump", "luxtronik2"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Heatpump interface",
]
requires-python = ">=3.9.0"
[project.urls]
"Source Code" = "https://github.com/bouni/python-luxtronik/"
"Bug Reports" = "https://github.com/bouni/python-luxtronik/issues/"
"Docs: Dev" = "https://github.com/bouni/python-luxtronik/"
[project.scripts]
luxtronik = "luxtronik.__main__:main"
[project.optional-dependencies]
dev = [
"pytest",
"autoflake",
"black",
"flake8-comprehensions",
"flake8-docstrings",
"flake8-noqa",
"flake8",
"isort",
"pycodestyle",
"pydocstyle",
"pyflakes",
"pyupgrade",
"ruff",
"yamllint"
]
[tool.setuptools]
platforms = ["any"]
zip-safe = false
include-package-data = true
[tool.setuptools.packages.find]
include = ["luxtronik*"]
[tool.pylint.format]
max-line-length = 120 # Set a better line length limit, 80 chars is just archaic
max-attributes = 10 # Allow more than 7 attributes in a class
[tool.pylint.MASTER]
# Pickle collected data for later comparisons.
persistent = 'yes'
# When enabled, pylint would attempt to guess common misconfiguration and emit
# user-friendly hints instead of false-positive error messages.
suggestion-mode = 'yes'
[tool.pylint.messages_control]
disable = [
"W0511", # Allow TODO comments
]
[tool.ruff]
line-length = 120