-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
51 lines (44 loc) · 1.25 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
[tool.poetry]
name = "sending"
version = "0.3.0"
description = "Library for pub/sub usage within an async application"
authors = ["Nicholas Wold <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.8"
aioredis = {extras = ["hiredis"], version = "^2.0.0", optional = true}
jupyter_client = {version = "^7.3.0", optional = true}
ipykernel = {version = "^6.15.1", optional = true}
websockets = {version = "^10.3", optional = true}
[tool.poetry.extras]
redis = ["aioredis"]
jupyter = ["jupyter_client", "ipykernel"]
websockets = ["websockets"]
all = ["aioredis", "jupyter_client", "ipykernel", "websockets"]
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
pytest-mock = "^3.7.0"
black = "^22.3.0"
flake8 = "^5.0.4"
pytest-asyncio = "^0.19"
isort = "^5.10.1"
nox = "^2022.8.7"
managed-service-fixtures = "^0.1.4"
nox-poetry = "^1.0.1"
pytest-cov = "^3.0.0"
uvicorn = "^0.18.2"
fastapi = "^0.79.0"
httpx = "^0.23.0"
structlog = "^22.1.0"
pytest-timeout = "^2.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
asyncio_mode = "auto"
filterwarnings = ["ignore::DeprecationWarning"]
[tool.black]
line-length = 100
[tool.isort]
line_length = 100
multi_line_output = 3
include_trailing_comma = true