-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
92 lines (83 loc) · 2.22 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[tool.poetry]
name = "kstreams"
version = "0.26.3"
description = "Build simple kafka streams applications"
authors = ["Marcos Schroh <[email protected]>"]
maintainers = ["Santiago Fraire Willemoës <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
keywords = ["stream", "processing", "kafka", "event streaming"]
classifiers = [
"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",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: System :: Networking",
"Topic :: System :: Distributed Computing",
"Framework :: AsyncIO",
]
[tool.poetry.dependencies]
python = "^3.9"
aiokafka = "<1.0"
prometheus-client = "<1.0"
future = "^1.0.0"
PyYAML = ">=5.4,<7.0.0"
pydantic = ">=2.0.0,<3.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest-asyncio = "^0.24.0"
pytest-benchmark = "^5.1.0"
pytest-cov = "^6"
pytest-httpserver = "^1.1.0"
mypy = "^1.11.2"
ruff = "^0.8"
aiorun = "^2024.5.1"
jedi = "^0.19.1"
mkdocs = "^1.1.2"
uvicorn = "<1.0"
commitizen = "^4"
fastapi = "^0.115.0"
mkdocs-material = "^9.5.39"
starlette-prometheus = "^0.10.0"
codecov = "^2.1.12"
mkdocstrings = { version = "^0.27", extras = ["python"] }
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.commitizen]
version_provider = "poetry"
tag_format = "$version"
update_changelog_on_bump = true
major_version_zero = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
log_level = "DEBUG"
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::PendingDeprecationWarning",
]
[[tool.mypy.overrides]]
module = "aiokafka.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "prometheus_client.*"
ignore_missing_imports = true
[tool.ruff.lint]
select = [
# pycodestyle"
"E4",
"E7",
"E9",
"E501",
# Pyflakes
"F",
# isort
"I",
]
[tool.ruff.lint.isort]
known-first-party = ["kstreams", "tests"]