forked from jelmer/prometheus-xmpp-alerts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (48 loc) · 1.53 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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "prometheus-xmpp-alerts"
authors = [{name = "Jelmer Vernooij", email = "[email protected]"}]
description = "Prometheus XMPP Alerts hook"
readme = "README.md"
license = {text = "Apachev2"}
keywords = ["prometheus xmpp jabber"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software 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",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Topic :: Software Development :: Version Control",
]
requires-python = ">= 3.8"
dependencies = [
"slixmpp",
"aiohttp",
"pytz",
"pyyaml",
"aiohttp_openmetrics",
"jinja2",
"bs4",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://jelmer.uk/code/prometheus-xmpp-alerts"
"Bug Tracker" = "https://github.com/jelmer/prometheus-xmpp-alerts/issues"
Repository = "https://github.com/jelmer/prometheus-xmpp-alerts"
GitHub = "https://github.com/jelmer/prometheus-xmpp-alerts"
[project.scripts]
prometheus-xmpp-alerts = "prometheus_xmpp.__main__:main"
[project.optional-dependencies]
testing = ["pytz"]
dev = ["ruff==0.6.7"]
[tool.setuptools]
packages = ["prometheus_xmpp"]
include-package-data = false
[tool.setuptools.dynamic]
version = {attr = "prometheus_xmpp.__version__"}