32 lines
763 B
TOML
32 lines
763 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "stateless-uptime-kuma"
|
|
version = "0.1.0"
|
|
authors = [
|
|
{ name="sinavir", email="sinavir@sinavir.fr" },
|
|
]
|
|
description = "Declare uptime-kuma probes in your nix configuration"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
|
|
]
|
|
dependencies = [
|
|
"uptime-kuma-api",
|
|
"requests",
|
|
"click",
|
|
"click-log",
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["stateless_uptime_kuma"]
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.dgnum.eu/mdebray/stateless-uptime-kuma"
|
|
|
|
[project.scripts]
|
|
stateless-uptime-kuma = "stateless_uptime_kuma.cli:cli"
|