-
Notifications
You must be signed in to change notification settings - Fork 30
/
pyproject.toml
37 lines (33 loc) · 940 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
[project]
name = "prometheus-qbittorrent-exporter"
version = "1.5.1"
description = "Prometheus exporter for qbittorrent"
authors = [
{name = "Esteban Sanchez", email = "[email protected]"},
]
dependencies = [
"prometheus-client>=0.20.0",
"python-json-logger>=2.0.7",
"qbittorrent-api>=2024.5.62",
]
requires-python = ">=3.11"
readme = "README.md"
keywords = ["prometheus", "qbittorrent"]
license = {text = "GPL-3.0"}
classifiers = []
[project.urls]
Homepage = "https://github.com/esanchezm/prometheus-qbittorrent-exporter"
Downloads = "https://github.com/esanchezm/prometheus-qbittorrent-exporter/archive/1.5.1.tar.gz"
[project.scripts]
qbittorrent-exporter = "qbittorrent_exporter.exporter:main"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.dev-dependencies]
dev = [
"pytest>=8.2.1",
"isort>=5.13.2",
"black>=24.4.2",
"coverage>=7.5.3",
"ruff>=0.6.2",
]