mirror of
https://github.com/MikroWizard/mikroman.git
synced 2025-08-02 09:04:44 +02:00
40 lines
1.1 KiB
TOML
40 lines
1.1 KiB
TOML
# 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"
|