-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (29 loc) · 1.09 KB
/
Copy pathpyproject.toml
File metadata and controls
30 lines (29 loc) · 1.09 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
[project]
name = "ha-run-chicken"
version = "0.0.0"
description = "Home Assistant integration for the Run-Chicken automatic chicken door"
readme = "README.md"
requires-python = ">=3.14.2"
# This project is not a published package: HACS ships custom_components/run_chicken
# directly and Home Assistant resolves the integration's runtime requirements from
# manifest.json. pyproject only describes the local development environment, so the
# integration's imports and the dev tooling live together in one list.
dependencies = [
"bleak>=3.0.2",
"bleak-retry-connector>=4.6.1",
"bluetooth-sensor-state-data>=1.9.0",
"colorlog>=6.10.1",
"crc8>=0.2.1",
# Not imported directly, but Home Assistant's bluetooth component pins this;
# align the dev env so the bluetooth stack matches what HA actually runs.
"habluetooth>=6.26.5",
"homeassistant>=2026.6.4",
"pre-commit>=4.6.0",
"ruff>=0.15.22",
"sensor-state-data>=2.20.0",
"ty>=0.0.58",
"voluptuous>=0.15.2",
]
# Don't build or install the project itself; uv only manages the dev environment.
[tool.uv]
package = false