-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (53 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
63 lines (53 loc) · 1.29 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "flameconnect"
version = "0.6.0"
description = "Async Python library for controlling Dimplex, Faber, and Real Flame fireplaces via the Flame Connect cloud API"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.13"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"aiohttp>=3.13.3",
"msal>=1.34.0",
]
[project.optional-dependencies]
tui = ["textual>=8.0.0"]
dev = [
"ruff>=0.15.2",
"mypy>=1.19.1",
"pytest>=9.0.2",
"pytest-aiohttp>=1.1.0",
"pytest-asyncio>=1.3.0",
"pytest-cov>=7.0.0",
"mutmut>=3.5.0",
"aioresponses>=0.7.8",
"pytest-xdist>=3.8.0",
]
[project.scripts]
flameconnect = "flameconnect.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/flameconnect"]
[tool.ruff]
line-length = 88
target-version = "py313"
exclude = ["flameconnect_reader.py"]
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "SIM", "TCH"]
[tool.mypy]
strict = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
filterwarnings = ["error::RuntimeWarning"]
[tool.coverage.run]
source = ["src/flameconnect"]
[dependency-groups]
dev = [
"pre-commit>=4.5.1",
]