-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 749 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 749 Bytes
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
[tool.poetry]
name = "async-exchange-server"
version = "0.1.0"
description = ""
authors = ["Artem Bulatov <gencurrent@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
fastapi = {extras = ["all"], version = "^0.110.1"}
websockets = "^12.0"
uvicorn = {extras = ["standard"], version = "^0.29.0"}
loguru = "^0.7.2"
motor = "^3.4.0"
beanie = "^1.25.0"
pydantic-settings = "^2.2.1"
pydantic = "^2.7.0"
asgiref = "^3.8.1"
pre-commit = "^3.7.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
pytest-asyncio = "^0.23.6"
httpx = "^0.27.0"
mypy = "^1.10.0"
pylint = "^3.1.0"
[tool.black]
line-length = 100
target-version = ["py311"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"