-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
executable file
·52 lines (47 loc) · 1.54 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
[tool.poetry]
authors = ["Jan Gosmann <[email protected]>"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Communications :: Email",
"Topic :: System :: Monitoring",
]
description = "Export Prometheus metrics from DMARC reports."
keywords = ["DMARC", "DKIM", "SPF", "Prometheus"]
license = "MIT"
name = "dmarc-metrics-exporter"
readme = "README.rst"
repository = "https://github.com/jgosmann/dmarc-metrics-exporter/"
version = "1.2.0" # Update also in __init__.py and Docker compose example in readme!
[tool.poetry.scripts]
dmarc-metrics-exporter = "dmarc_metrics_exporter.__main__:run"
[tool.poetry.dependencies]
bite-parser = "^0.2.4"
dataclasses-serialization = "^1.3.1"
prometheus_client = "^0.21.0"
python = "^3.9"
structlog = ">=24.1.0"
uvicorn = {extras = ["standard"], version = "^0.32.0"}
xsdata = ">=23.7"
[tool.poetry.group.dev.dependencies]
aiohttp = "^3.7.3,!=3.10.5"
mypy = "^1.4.1"
pytest = "^8.3.2"
pytest-asyncio = "^0.24.0"
pytest-cov = "^5.0.0"
requests = "^2.26.0"
ruff = "^0.6.9"
types-requests = "^2.25.11"
[tool.ruff.lint]
extend-select = ["I"]
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]