forked from rabbitmq-community/rstream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (37 loc) · 1.01 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
[tool.poetry]
name = "rstream"
version = "0.20.8"
description = "A python client for RabbitMQ Streams"
authors = ["George Fortunatov <[email protected]>", "Daniele Palaia <[email protected]>", "Gabriele Santomaggio <[email protected]>"]
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"
requests = "^2.31.0"
mmh3 = "^4.0.0"
typing_extensions ="^4.11.0"
[tool.poetry.dev-dependencies]
ipython = "^7.13.0"
flake8 = "^3.9.2"
isort = "^5.9.3"
mypy = "^0.910"
pytest = "^7.4.0"
pytest-asyncio = "^0.15.1"
black = "^23.12.1"
requests = "^2.31.0"
mmh3 = "^4.0.0"
typing_extensions ="^4.11.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
requests = "^2.31.0"
types-requests = "^2.31.0.20240406"
typing_extensions ="^4.11.0"
[tool.black]
line-length = 110
[tool.mypy]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "local_tests.*"
ignore_errors = true