-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
64 lines (56 loc) · 1.26 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
[tool.poetry]
name = "arrlio"
version = "1.0.0a1"
description = ""
authors = ["Roman Koshel <roma.koshel@gmail.com>"]
license = "MIT"
readme = "README.md"
keywords = ["rabbitmq"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
]
packages = [{include = "arrlio"}]
[tool.poetry.dependencies]
python = ">=3.11, <4.0"
aiormq = ">=6.7.6"
rmqaio = ">=0.10.0"
msgpack = "*"
pydantic = "^2.10"
pydantic_settings = "*"
rich = "*"
roview = "*"
yarl = "*"
[tool.poetry.group.dev.dependencies]
invoke = "*"
pylint = "*"
ruff = "*"
[tool.poetry.group.test.dependencies]
celery = "*"
coverage = "*"
docker = "*"
httpx = "*"
pytest = "*"
pytest_asyncio = "*"
pytest_timeout = "*"
[tool.poetry.group.docs.dependencies]
mkdocs = "*"
mkdocs-material = "*"
mkdocstrings = {extras = ["python"], version = "*"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
[tool.isort]
indent = 4
lines_after_imports = 2
lines_between_types = 1
src_paths = ["."]
profile = "black"
[tool.ruff]
target-version = "py311"