23 lines
425 B
TOML
23 lines
425 B
TOML
[project]
|
|
name = "health-agent"
|
|
version = "0.1.0"
|
|
description = "iklim.co Monitoring Health Agent"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"requests",
|
|
"docker",
|
|
"python-dotenv",
|
|
"pyyaml",
|
|
"redis",
|
|
"pymongo",
|
|
"uptime-kuma-api-v2",
|
|
"cryptography",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/health_agent"]
|