-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (43 loc) · 1.36 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
[tool.poetry]
name = "acr-monitoring"
version = "0.0.0"
description = "listens to acr cloudevents and leverages the zabbix sender proto to send that timestamp of the last recognized track to zabbix so we can notice if there are gaps"
authors = ["RaBe IT-Reaktion <[email protected]>"]
license = "AGPLv3"
readme = "README.md"
packages = [{include = "acrmonitor.py"}]
[tool.poetry.scripts]
acrmonitor = 'acrmonitor:main'
[tool.poetry.dependencies]
python = "^3.11"
cloudevents = "^1.10.1"
ConfigArgParse = "^1.7"
kafka-python-ng = "^2.2.3"
py-zabbix = "^1.1.7"
minio = "^7.2.12"
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
pytest = "^8.3.4"
pytest-ruff = "^0.4"
pytest-cov = "^6.0.0"
pytest-random-order = "^1.1.1"
ruff = "^0.8.2"
isort = "^5.13.2"
pytest-isort = "^4.0.0"
mkdocs = "^1.5.3"
freezegun = "^1.5.1"
mkdocs-material = "^9.5.48"
mkdocs-gen-files = "^0.5.0"
mkdocs-literate-nav = "^0.6.1"
mkdocs-section-index = "^0.3.9"
mkdocs-autorefs = "^1.0.1"
mkdocstrings = {extras = ["python"], version = "^0.27.0"}
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
minversion = "7.2"
addopts = "-ra -q --random-order --doctest-glob='*.md' --doctest-modules --cov=acrmonitor --cov-fail-under=100 --ruff --isort --ignore=docs/"
#filterwarnings = ["ignore::DeprecationWarning:pytest_freezegun"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"