-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
64 lines (57 loc) · 1.6 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
[project]
name = "device-tools"
authors = [{ name = "Lennard Beers", email = "[email protected]"}]
maintainers = [{ name = "Lennard Beers", email = "[email protected]"}]
license = {file = "LICENSE.md"}
keywords = [
"homeassistant",
"custom-component",
"device-tools",
"device",
"tools",
"integration",
"home-assistant",
"home-assistant-custom-component",
"home-assistant-integration",
"home-assistant-integration",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Users",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
]
description = "A custom component for Home Assistant to create and modify devices."
readme = "README.md"
requires-python = ">=3.12"
version = "0.0.0"
dependencies = [
"homeassistant>=2024.12"
]
[dependency-groups]
dev = [
"ruff",
"mypy",
"pytest",
"pytest-asyncio",
"pytest-cov",
"homeassistant-stubs",
"voluptuous-stubs",
]
[project.urls]
Repository = "https://github.com/eulemitkeule/device-tools"
Documentation = "https://github.com/eulemitkeule/device-tools/blob/master/README.md"
Changelog = "https://github.com/EuleMitKeule/device-tools/releases"
Issues = "https://github.com/eulemitkeule/device-tools/issues"
[tool.mypy]
check_untyped_defs = true
strict = true
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"
[tool.ruff.lint]
select = ["D", "ARG"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.per-file-ignores]
"!custom_components/device_tools/**.py" = ["D"]