01969b2d24
Adds simbakit/ as a subfolder service that polls PetKit smart devices (litter box, fountain, feeder) and exposes pet weight, litter activity, and device health data via three new LangChain tools. Also fixes stale alerts bug where cleared conditions (e.g. waste bin full) persisted because the query used max alert time instead of the device's last_seen_at timestamp. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
21 lines
356 B
TOML
21 lines
356 B
TOML
[project]
|
|
name = "simbakit"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"pypetkitapi",
|
|
"aiohttp",
|
|
"aiosqlite",
|
|
"python-dotenv",
|
|
]
|
|
|
|
[project.scripts]
|
|
simbakit = "simbakit.__main__:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/simbakit"]
|