-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
40 lines (34 loc) · 1.11 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
# SPDX-FileCopyrightText: none
# SPDX-License-Identifier: CC0-1.0
[build-system]
requires = ["setuptools>=61.0.0", "wheel", "setuptools_scm[toml]>=7.1"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "routeros-check"
description = "Monitoring plugin for MikroTik devices for Icinga-Nagios-... "
readme = "README.md"
authors = [{ name = "DinoTools"}]
license = { file = "LICENSE.md" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["RouterOS", "MikroTik", "Icinga", "Nagios", "Monitoring"]
dependencies = [
"Click",
"librouteros",
"nagiosplugin",
]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/DinoTools/monitoring-check_routeros"
[project.scripts]
check_routeros = "routeros_check.__main__:cli"
[tool.setuptools.packages.find]
include = ["routeros_check*"]
[tool.setuptools_scm]
write_to = "routeros_check/_scm_version.py"
local_scheme = "no-local-version"