-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
67 lines (62 loc) · 1.71 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
[tool.poetry]
name = "taskiq-aio-kafka"
description = "Kafka broker for taskiq"
authors = ["Taskiq team <[email protected]>"]
maintainers = ["Taskiq team <[email protected]>"]
version = "0.2.1"
readme = "README.md"
license = "LICENSE"
classifiers = [
"Typing :: Typed",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: System :: Networking",
"Development Status :: 3 - Alpha",
]
keywords = ["taskiq", "tasks", "distributed", "async", "kafka", "aiokafka"]
packages = [{ include = "taskiq_aio_kafka" }]
[tool.poetry.dependencies]
python = "^3.9"
taskiq = "^0"
aiokafka = "^0.10.0"
kafka-python = "^2.0.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
flake8 = "^7"
isort = "^5.13.2"
mypy = "^1.10.0"
pre-commit = "^3.7.1"
yesqa = "^1.5.0"
autoflake = "^2.3.1"
wemake-python-styleguide = "^0.19.2"
coverage = "^7.5.3"
pytest-cov = "^5.0.0"
mock = "^5.1.0"
anyio = "^4.4.0"
pytest-xdist = { version = "^3.6.1", extras = ["psutil"] }
types-mock = "^5.1.0"
black = "^24.4.2"
[tool.mypy]
strict = true
ignore_missing_imports = true
allow_subclassing_any = true
allow_untyped_calls = true
pretty = true
show_error_codes = true
implicit_reexport = true
allow_untyped_decorators = true
warn_return_any = false
warn_unused_ignores = false
[tool.isort]
profile = "black"
multi_line_output = 3
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"