-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
58 lines (50 loc) · 1.2 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
53
54
55
56
57
58
[tool.poetry]
name = "rmqaio"
version = "0.17.0.a5"
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 = "rmqaio"}]
[tool.poetry.dependencies]
python = "^3.10"
aiormq = ">=6.7.6"
yarl = "*"
[tool.poetry.group.dev.dependencies]
ruff = "*"
[tool.poetry.group.test.dependencies]
docker = "*"
httpx = "*"
invoke = "*"
pytest = "*"
pytest-asyncio = "*"
pytest-cov = "*"
[tool.poetry.group.docs.dependencies]
black = "*"
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.pytest.ini_options]
markers = [
"integration: tests that require external services like Docker",
]