Validate Home Assistant Configuration / YAML Lint (push) Failing after 7s
Validate Home Assistant Configuration / Home Assistant Config Check (push) Failing after 23s
Validate Home Assistant Configuration / Validate Entity IDs (push) Failing after 1m12s
Validate Home Assistant Configuration / Validate Device IDs (push) Failing after 17s
Validate Home Assistant Configuration / YAML Lint (pull_request) Failing after 8s
Validate Home Assistant Configuration / Home Assistant Config Check (pull_request) Failing after 21s
Validate Home Assistant Configuration / Validate Entity IDs (pull_request) Failing after 17s
Validate Home Assistant Configuration / Validate Device IDs (pull_request) Failing after 17s
44 lines
847 B
TOML
44 lines
847 B
TOML
[project]
|
|
name = "home-assistant"
|
|
version = "0.1.0"
|
|
description = "Data analysis notebooks for Home Assistant smart home metrics"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12,<3.13"
|
|
dependencies = [
|
|
"jupyter>=1.0.0",
|
|
"pandas>=2.0.0",
|
|
"matplotlib>=3.7.0",
|
|
"seaborn>=0.13.0",
|
|
"psycopg2-binary>=2.9.0",
|
|
"sqlalchemy>=2.0.0",
|
|
"python-dotenv>=1.0.0",
|
|
"ipykernel>=6.25.0",
|
|
"pandera>=0.28.1",
|
|
"plotly>=6.5.2",
|
|
"pyyaml>=6.0",
|
|
"requests>=2.31.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"ruff>=0.1.0",
|
|
"yamllint>=1.35.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["utils"]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py312"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pandas-stubs>=2.3.3.260113",
|
|
"ruff>=0.14.14",
|
|
]
|