forked from bosch-thermostat/bosch-thermostat-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (60 loc) · 1.2 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
[project]
name = "bosch-thermostat-client"
dynamic = ["version"]
description = "Python API for talking to Bosch™ Heating gateway using HTTP or XMPP"
authors = [
{name = "Pawel Szafer", email = "[email protected]"},
]
dependencies = [
"aiohttp>=3.9.0",
"click>=8.1.7",
"colorlog>=6.8.2",
"pyaes>=1.6.1",
"pytz>=2024.1",
"pyyaml>=6.0.1",
"slixmpp>=1.8.5",
]
requires-python = ">=3.11"
readme = "README.md"
license = {text = "Apache License 2.0"}
[build-system]
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"
[tool]
[tool.pdm]
version = {from = "bosch_thermostat_client/version.py"}
[tool.pdm.dev-dependencies]
dev = [
"black>=23.3.0",
"isort>=5.12.0",
"flake8>=6.0.0",
"bandit>=1.7.5",
"pre-commit>=3.2.1",
]
[project.scripts]
bosch_cli= "bosch_thermostat_client.bosch_cli:cli"
[tool.black]
line-length = 88
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| pdm/_vendor
| tests/fixtures
)/
'''
[tool.isort]
profile = "black"
atomic = true
filter_files = true
known_first_party = ["bosch_thermostat_client"]
[tool.pdm.scripts]
lint = "pre-commit run --all-files"