-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
57 lines (51 loc) · 1.43 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
# PEP 621 project metadata
# See https://www.python.org/dev/peps/pep-0621/
name = "kea-exporter"
dynamic = [ "version" ]
description = "Export Kea Metrics in the Prometheus Exposition Format"
authors = [
{ name = "Martin Weinelt", email = "[email protected]" },
]
license = { text = "MIT" }
requires-python = ">=3.8,<4.0"
dependencies = [
"click>=8.1.7,<9.0",
"prometheus-client>=0.20.0,<1.0",
"requests>=2.31.0,<3.0"
]
readme = "README.rst"
keywords = [
"prometheus",
"exporter",
"metrics",
"kea",
"dhcp",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Monitoring",
"Topic :: System :: Systems Administration",
]
[project.urls]
changelog = "https://github.com/mweinelt/kea-exporter/blob/develop/HISTORY"
homepage = "https://github.com/mweinelt/kea-exporter"
repository = "https://github.com/mweinelt/kea-exporter.git"
[project.scripts]
kea-exporter = "kea_exporter.__main__:cli"
[tool.pdm.version]
source = "file"
path = "kea_exporter/__init__.py"
[tool.black]
line-length = 120
[tool.ruff]
line-length = 120