forked from kbytesys/pynagsystemd
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpyproject.toml
50 lines (45 loc) · 1.47 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[tool.poetry]
name = "check_systemd"
version = "4.1.1"
description = "Nagios / Icinga monitoring plugin to check systemd for failed units."
authors = ["Josef Friedrich <[email protected]>"]
readme = "README.rst"
license = "LGPL-2.1-only"
repository = "https://github.com/Josef-Friedrich/check_systemd"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: POSIX :: Linux",
"Topic :: System :: Networking :: Monitoring",
]
[tool.poetry.dependencies]
python = "^3.9"
nagiosplugin = "^1.2"
[tool.poetry.group.dev.dependencies]
nagiosplugin-stubs = "^0.6.4"
# PyGObject = "^3" # Slow tests on GitHub Actions and publishing to PyPI failed
pygobject-stubs = "^2"
pytest = "^8"
readme-patcher = "^0"
ruff = "^0"
Sphinx = "^7"
sphinx-rtd-theme = "^2"
tox = "^4"
twine = "^5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
check_systemd = "check_systemd:main"
[tool.pyright]
reportMissingModuleSource = false