2021-06-09 18:44:10 +00:00
|
|
|
[tool.poetry]
|
|
|
|
authors = ["Robert Kaussow <mail@thegeeklab.de>"]
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 5 - Production/Stable",
|
|
|
|
"Environment :: Console",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"Intended Audience :: Information Technology",
|
|
|
|
"Intended Audience :: System Administrators",
|
|
|
|
"Natural Language :: English",
|
|
|
|
"Operating System :: POSIX",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
2021-10-07 07:53:19 +00:00
|
|
|
"Programming Language :: Python :: 3.10",
|
2022-11-24 20:35:49 +00:00
|
|
|
"Programming Language :: Python :: 3.11",
|
2023-10-16 12:15:57 +00:00
|
|
|
"Programming Language :: Python :: 3.12",
|
2021-06-09 18:44:10 +00:00
|
|
|
"Topic :: Utilities",
|
|
|
|
]
|
|
|
|
description = "Prometheus Service Discovery for Proxmox VE."
|
|
|
|
documentation = "https://github.com/thegeeklab/prometheus-pve-sd/"
|
|
|
|
homepage = "https://github.com/thegeeklab/prometheus-pve-sd/"
|
2022-02-26 15:45:02 +00:00
|
|
|
include = ["LICENSE"]
|
2021-06-09 18:44:10 +00:00
|
|
|
keywords = ["prometheus", "sd", "pve", "metrics"]
|
|
|
|
license = "MIT"
|
|
|
|
name = "prometheus-pve-sd"
|
2022-02-26 15:45:02 +00:00
|
|
|
packages = [{ include = "prometheuspvesd" }]
|
2021-06-09 18:44:10 +00:00
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/thegeeklab/prometheus-pve-sd/"
|
|
|
|
version = "0.0.0"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2024-01-15 20:55:43 +00:00
|
|
|
anyconfig = "0.14.0"
|
2021-06-09 18:44:10 +00:00
|
|
|
appdirs = "1.4.4"
|
2022-10-25 19:30:28 +00:00
|
|
|
colorama = "0.4.6"
|
2024-03-07 10:01:13 +00:00
|
|
|
environs = "11.0.0"
|
2024-07-09 06:15:58 +00:00
|
|
|
jsonschema = "4.23.0"
|
2022-07-11 06:48:27 +00:00
|
|
|
nested-lookup = "0.2.25"
|
2024-09-22 18:34:37 +00:00
|
|
|
prometheus-client = "0.21.0"
|
2024-08-12 07:01:29 +00:00
|
|
|
proxmoxer = "2.1.0"
|
2023-07-23 10:42:41 +00:00
|
|
|
python = "^3.8.0"
|
2023-03-20 10:17:17 +00:00
|
|
|
python-json-logger = "2.0.7"
|
2024-06-05 07:37:17 +00:00
|
|
|
requests = "2.32.3"
|
2024-02-07 08:48:25 +00:00
|
|
|
"ruamel.yaml" = "0.18.6"
|
2021-06-09 18:44:10 +00:00
|
|
|
|
2023-02-12 14:11:15 +00:00
|
|
|
[tool.poetry.scripts]
|
|
|
|
prometheus-pve-sd = "prometheuspvesd.cli:main"
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
2024-10-28 01:49:20 +00:00
|
|
|
ruff = "0.7.1"
|
2024-09-16 00:08:08 +00:00
|
|
|
pytest = "8.3.3"
|
2024-03-25 01:20:09 +00:00
|
|
|
pytest-mock = "3.14.0"
|
2024-03-25 07:34:16 +00:00
|
|
|
pytest-cov = "5.0.0"
|
2022-02-05 14:01:50 +00:00
|
|
|
toml = "0.10.2"
|
2021-06-09 18:44:10 +00:00
|
|
|
|
|
|
|
[tool.poetry-dynamic-versioning]
|
|
|
|
enable = true
|
|
|
|
style = "semver"
|
|
|
|
vcs = "git"
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
2023-09-19 07:00:30 +00:00
|
|
|
addopts = "prometheuspvesd --cov=prometheuspvesd --cov-report=xml:coverage.xml --cov-report=term-missing --no-cov-on-fail --cov-fail-under=80"
|
2024-02-06 08:34:49 +00:00
|
|
|
filterwarnings = ["ignore::FutureWarning", "ignore::DeprecationWarning"]
|
2021-06-09 18:44:10 +00:00
|
|
|
|
|
|
|
[tool.coverage.run]
|
|
|
|
omit = ["**/test/*"]
|
|
|
|
|
|
|
|
[build-system]
|
2023-08-24 22:28:41 +00:00
|
|
|
build-backend = "poetry_dynamic_versioning.backend"
|
2021-06-09 18:44:10 +00:00
|
|
|
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
|
2023-02-12 14:11:15 +00:00
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
exclude = [
|
2024-02-06 08:34:49 +00:00
|
|
|
".git",
|
|
|
|
"__pycache__",
|
|
|
|
"build",
|
|
|
|
"dist",
|
|
|
|
"*.pyc",
|
|
|
|
"*.egg-info",
|
|
|
|
".cache",
|
|
|
|
".eggs",
|
|
|
|
"env*",
|
2023-02-12 14:11:15 +00:00
|
|
|
]
|
2023-11-10 13:50:58 +00:00
|
|
|
|
|
|
|
line-length = 99
|
|
|
|
indent-width = 4
|
|
|
|
|
2024-02-06 08:34:49 +00:00
|
|
|
[tool.ruff.lint]
|
2023-02-12 14:11:15 +00:00
|
|
|
# Explanation of errors
|
|
|
|
#
|
|
|
|
# D102: Missing docstring in public method
|
|
|
|
# D103: Missing docstring in public function
|
|
|
|
# D105: Missing docstring in magic method
|
|
|
|
# D107: Missing docstring in __init__
|
|
|
|
# D202: No blank lines allowed after function docstring
|
|
|
|
# D203: One blank line required before class docstring
|
|
|
|
# D212: Multi-line docstring summary should start at the first line
|
|
|
|
ignore = [
|
2024-02-06 08:34:49 +00:00
|
|
|
"D102",
|
|
|
|
"D103",
|
|
|
|
"D105",
|
|
|
|
"D107",
|
|
|
|
"D202",
|
|
|
|
"D203",
|
|
|
|
"D212",
|
|
|
|
"UP038",
|
|
|
|
"RUF012",
|
2023-02-12 14:11:15 +00:00
|
|
|
]
|
|
|
|
select = [
|
2024-02-06 08:34:49 +00:00
|
|
|
"D",
|
|
|
|
"E",
|
|
|
|
"F",
|
|
|
|
"Q",
|
|
|
|
"W",
|
|
|
|
"I",
|
|
|
|
"S",
|
|
|
|
"BLE",
|
|
|
|
"N",
|
|
|
|
"UP",
|
|
|
|
"B",
|
|
|
|
"A",
|
|
|
|
"C4",
|
|
|
|
"T20",
|
|
|
|
"SIM",
|
|
|
|
"RET",
|
|
|
|
"ARG",
|
|
|
|
"ERA",
|
|
|
|
"RUF",
|
2023-02-12 14:11:15 +00:00
|
|
|
]
|
|
|
|
|
2024-02-06 08:34:49 +00:00
|
|
|
[tool.ruff.lint.per-file-ignores]
|
2024-01-24 11:50:39 +00:00
|
|
|
"test_*.py" = ["S"]
|
|
|
|
|
2023-11-10 13:50:58 +00:00
|
|
|
[tool.ruff.format]
|
|
|
|
quote-style = "double"
|
|
|
|
indent-style = "space"
|
|
|
|
line-ending = "lf"
|