-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (33 loc) · 747 Bytes
/
pyproject.toml
File metadata and controls
40 lines (33 loc) · 747 Bytes
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
[project]
name = "devialet-phantom-ctl"
version = "0.1.0"
description = "Discover Devialet Phantom systems and send IP Control commands."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"zeroconf>=0.130",
"tomli>=2.0; python_version < '3.11'",
"pydantic>=2.12.5",
"httpx>=0.28.1",
]
[project.scripts]
devialetctl = "devialetctl.cli:main"
[build-system]
requires = ["hatchling>=1.25"]
build-backend = "hatchling.build"
[tool.uv]
package = true
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-cov>=7.0.0",
"ruff>=0.15.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/devialetctl"]
[tool.ruff]
target-version = "py310"
line-length = 100
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I"]