-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
40 lines (35 loc) · 982 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
38
39
40
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "prometheus-eaton-ups-exporter"
authors = [
{name = "Mathis Lövenich"},
]
description = "A Prometheus exporter for Eaton UPSs."
version = "1.2.0"
readme = "README.md"
requires-python = ">=3.11"
keywords = ["prometheus", "exporter", "eaton"]
license = {text = "ISC"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
'prometheus_client',
'requests',
]
[project.urls]
"Bug Reports" = "https://github.com/psyinfra/prometheus-eaton-ups-exporter/issues"
"Source" = "https://github.com/psyinfra/prometheus-eaton-ups-exporter/"
[project.optional-dependencies]
tests = [
'flake8',
'pyre-check',
'pytest == 7.2.1',
'pytest-vcr',
]
[project.scripts]
prometheus_eaton_ups_exporter = "prometheus_eaton_ups_exporter.main:main"
[tool.setuptools.packages]
find = {} # Scanning implicit namespaces is active by default