sysalert/pyproject.toml

32 lines
796 B
TOML
Raw Permalink Normal View History

2024-07-13 19:32:04 +02:00
[build-system]
requires = ["setuptools", "systemd-python"]
build-backend = "setuptools.build_meta"
[project]
name = "sysalert"
version = "0.1.0"
2024-07-14 09:53:39 +02:00
authors = [ {name = "Fredrik Eriksson", email = "sysalert@fulh.ax"} ]
2024-07-13 19:32:04 +02:00
dependencies = [
"systemd-python"
]
2024-07-14 12:37:46 +02:00
description = "Generic OnFailure= and OnSuccess= handler for systemd"
2024-07-14 09:53:39 +02:00
readme = "README.md"
license = { file = "LICENSE" }
keywords = [ "systemd" ]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Topic :: System :: Monitoring",
]
2024-07-13 19:32:04 +02:00
[project.scripts]
sysalert = "sysalert.util:cli"
2024-07-14 09:53:39 +02:00
[project.urls]
Homepage = "https://gitea.fulh.ax/feffe/sysalert"
Repository = "https://gitea.fulh.ax/feffe/sysalert.git"