-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 1.03 KB
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 <it@rabe.ch>"]
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 = "^2.0.0"
cherrypy = "^18.10.0"
kafka-python-ng = "^2.2.3"
pyyaml = "^6.0"
werkzeug = "^3.1.6"
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.2"
pytest-cov = "^7.1.0"
pytest-mypy = "^1.0.1"
pytest-random-order = "^1.2.0"
pytest-ruff = "^0.5"
ruff = "^0.15.7"
[tool.pytest]
minversion = "9.0"
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"