-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (44 loc) · 1.28 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
[tool.poetry]
name = "redispatcher"
version = "0.3.0"
description = "Dispatch and run distributed work asynchronously, brokered by Redis"
authors = ["Rafal Stapinski <stapinskirafal@gmail.com>"]
keywords = ["redis", "queue", "broker", "pub sub", "asynchronous message", "celery", "dispatcher", "worker"]
readme = "README.md"
license = "MIT"
homepage = "https://rafalstapinski.github.io/redispatcher"
repository = "https://github.com/rafalstapinski/redispatcher"
[tool.poetry.dependencies]
python = "^3.8"
aioredis = "^1.3.1"
pydantic = "^2.6.1"
pydantic-settings = "^2.2.1"
[tool.poetry.group.dev.dependencies]
black = "^24.2.0"
pylint = "^3.0.3"
isort = "^5.13.2"
pytest = "^8.0.1"
pytest-redis = "^3.0.2"
pytest-asyncio = "^0.23.5"
elastic-apm = "^6.20.0"
setuptools = "^69.1.0"
tomli = "^2.0.1"
[tool.poetry.scripts]
monitor = "redispatcher.monitor:monitor_cli"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
line_length = 120
multi_line_output = 3
include_trailing_comma = true
sections = "FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
known_local_folder = ["test"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.black]
line-length = 120
[tool.pylint.messages_control]
disable = "all"
enable = "unused-import"