32 lines
796 B
TOML
32 lines
796 B
TOML
[build-system]
|
|
requires = ["setuptools", "systemd-python"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "sysalert"
|
|
version = "0.1.0"
|
|
authors = [ {name = "Fredrik Eriksson", email = "sysalert@fulh.ax"} ]
|
|
dependencies = [
|
|
"systemd-python"
|
|
]
|
|
description = "Generic OnFailure= and OnSuccess= handler for systemd"
|
|
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",
|
|
]
|
|
|
|
[project.scripts]
|
|
sysalert = "sysalert.util:cli"
|
|
|
|
[project.urls]
|
|
Homepage = "https://gitea.fulh.ax/feffe/sysalert"
|
|
Repository = "https://gitea.fulh.ax/feffe/sysalert.git"
|
|
|
|
|