-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
37 lines (29 loc) · 895 Bytes
/
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
authors = [
{email = "[email protected]"},
{name = "Thomas Steen Rasmussen"}
]
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: BSD :: FreeBSD",
]
dependencies = [
"prometheus-client == 0.19.0",
]
description = "A Prometheus exporter for FreeBSD gstat data"
dynamic = ["version"]
license = {text = "BSD 3-Clause License"}
name = "gstat_exporter"
readme = "README.md"
requires-python = ">=3.8"
[project.scripts]
gstat_exporter = "gstat_exporter.gstat_exporter:main"
[project.optional-dependencies]
dev = ["twine == 4.0.2", "pre-commit == 3.5.0", "setuptools-scm == 8.0.4", "build==1.0.3"]
[project.urls]
homepage = "https://github.com/tykling/gstat_exporter"
[tool.setuptools_scm]