-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
56 lines (49 loc) · 1.19 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
[project]
name = "pypockethome"
version = "0.1.0"
description = 'Python library for interfacing with the PocketHome system of climate control devices'
readme = "README.md"
requires-python = ">=3.13"
license = "Apache-2.0"
license-files = [
"LICENCE.md"
]
keywords = []
authors = [
{ name = "Raqbit", email = "raqbit@outlook.com" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
"abstractcp==1.0.0"
]
[project.urls]
Documentation = "https://github.com/Raqbit/pypockethome#readme"
Issues = "https://github.com/Raqbit/pypockethome/issues"
Source = "https://github.com/Raqbit/pypockethome"
[dependency-groups]
dev = [
"mypy~=1.18.2",
"ruff==0.14.9",
"ty==0.0.2",
]
[build-system]
requires = ["uv_build>=0.9.18,<0.10.0"]
build-backend = "uv_build"
[tool.coverage.run]
source_pkgs = ["pypockethome", "tests"]
branch = true
parallel = true
[tool.coverage.paths]
pypockethome = ["src/pypockethome"]
tests = ["tests"]
[tool.coverage.report]
exclude_lines = [
"no cov",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]