-
Notifications
You must be signed in to change notification settings - Fork 99
/
pyproject.toml
32 lines (28 loc) · 1.09 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "prometheus-pve-exporter"
version = "3.4.5"
authors = [{ name = "Lorenz Schori", email = "lo@znerol.ch" }]
description = "Proxmox VE exporter for the Prometheus monitoring system."
requires-python = ">=3.9"
keywords = ["prometheus", "exporter", "network", "monitoring", "proxmox"]
license = { text = "Apache-2.0" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Topic :: System :: Monitoring",
"Topic :: System :: Networking :: Monitoring",
"License :: OSI Approved :: Apache Software License",
]
dynamic = ["dependencies", "optional-dependencies", "readme"]
[project.urls]
Homepage = "https://github.com/prometheus-pve/prometheus-pve-exporter"
[project.scripts]
pve_exporter = "pve_exporter.cli:main"
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.in"] }
optional-dependencies.test = { file = ["requirements-test.txt"] }
readme = { file = ["README.rst"] }