add missing routeros tools from dinotools
This commit is contained in:
parent
e4b6fed5f2
commit
60c4f1870f
35 changed files with 5085 additions and 1 deletions
40
py/libs/check_routeros/pyproject.toml
Normal file
40
py/libs/check_routeros/pyproject.toml
Normal file
|
|
@ -0,0 +1,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.6"
|
||||
|
||||
[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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue