-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (35 loc) · 1.02 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
[tool.poetry]
name = "pathfinder-cloudevents-service"
version = "0.0.0"
description = "Subscribe to Axia Pathfinder Events and send them to Kafka as CloudEvents."
authors = ["RaBe IT-Reaktion <[email protected]>"]
license = "AGPLv3"
readme = "README.md"
packages = [{include = "pathfinderevents.py"}]
[tool.poetry.scripts]
pathfinderevents = 'pathfinderevents:main'
[tool.poetry.dependencies]
python = "^3.11"
configargparse = "^1.7"
cloudevents = "^1.11.0"
cherrypy = "^18.10.0"
kafka-python-ng = "^2.2.3"
pyyaml = "^6.0"
werkzeug = "^3.1.3"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
pytest-cov = "^6.0.0"
pytest-mypy = "^0.10.3"
pytest-random-order = "^1.1.1"
pytest-ruff = "^0.4"
ruff = "^0.8.2"
[tool.pytest.ini_options]
minversion = "7.2"
addopts = "-ra -q --doctest-glob='*.md' --doctest-modules --cov --ignore=docs/ --ruff --mypy"
filterwarnings = [
"ignore::DeprecationWarning:cherrypy",
"ignore::DeprecationWarning:pkg_resources",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"