-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 891 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 891 Bytes
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "prometheus-disk-exporter"
version = "0.0.4"
authors = [
{ name = "Pietro Bonaldo Gregori", email = "pietro.bogre@gmail.com" }
]
description = "S.M.A.R.T. and partition data exporter for the Prometheus monitoring system"
readme = "README.md"
license = { text = "Apache-2.0" }
requires-python = ">=3.11"
keywords = ["metrics", "disk", "prometheus", "exporter", "monitoring", "smart"]
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: System :: Monitoring",
"Intended Audience :: System Administrators",
"Operating System :: POSIX :: Linux"
]
dependencies = [
"prometheus_client>=0.19.0"
]
[project.urls]
Homepage = "https://github.com/pbogre/prometheus-disk-exporter"
[project.scripts]
prometheus_disk_exporter = "disk_exporter:main"