forked from rabbitmq-community/rstream
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (43 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
53 lines (43 loc) · 1.16 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
42
43
44
45
46
47
48
49
50
51
52
[tool.poetry]
name = "rstream"
version = "0.40.1"
description = "A python client for RabbitMQ Streams"
authors = ["Gabriele Santomaggio <g.santomaggio@gmail.com>", "George Fortunatov <qweeeze@gmail.com>", "Daniele Palaia <dpalaia@vmware.com>"]
readme = "README.md"
homepage = "https://github.com/rabbitmq-community/rstream"
repository = "https://github.com/rabbitmq-community/rstream"
license = "MIT"
[tool.poetry.dependencies]
python = "^3.9"
mmh3 = "^5.2.0"
typing_extensions ="^4.15.0"
[tool.poetry.dev-dependencies]
ipython = "^7.13.0"
flake8 = "^7.3.0"
isort = "^6.0.1"
mypy = "^1.18.2"
pytest = "^8.4.2"
pytest-asyncio = "^1.2.0"
black = "^25.9.0"
requests = "^2.32.4"
mmh3 = "^5.2.0"
typing_extensions ="^4.15.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.4.2"
requests = "^2.32.5"
types-requests = "^2.32.4.20250913"
typing_extensions ="^4.15.0"
[tool.black]
line-length = 110
skip-string-normalization = true
[tool.mypy]
ignore_missing_imports = true
exclude = ["venv", ".venv", "compose"]
[[tool.mypy.overrides]]
module = "local_tests.*"
ignore_errors = true
[tool.isort]
profile = "black"
[tool.flake8]
max-line-length = 120
extend-ignore = ["E203", "W503"]