-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (60 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
65
[tool.poetry]
name = "websocket-chat"
version = "0.1.0"
description = ""
authors = ["Lukash <sashass20062727@gmail.com>"]
license = "MIT"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
fastapi = "^0.111.0"
motor = "^3.4.0"
uvicorn = {extras = ["all"], version = "^0.29.0"}
punq = "^0.7.0"
pydantic-settings = "^2.3.4"
aiokafka = "^0.11.0"
orjson = "^3.10.6"
websockets = "^12.0"
aiojobs = "^1.3.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.0"
pre-commit = "^3.7.1"
isort = "^5.13.2"
pytest-asyncio = "^0.23.7"
faker = "^26.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
line_length = 120
lines_after_imports = 2
lines_between_sections = 1
lines_between_types = 0
force_alphabetical_sort_within_sections = true
ensure_newline_before_comments = true
combine_as_imports = true
combine_star = true
skip_gitignore = true
balanced_wrapping = true
force_grid_wrap = 2
src_paths = ["core", ]
skip_glob = [
".git",
".idea",
".vscode",
"venv",
".venv",
]
known_fastapi = ["fastapi"]
known_first_party = ["app"]
sections = [
"FUTURE",
"STDLIB",
"FASTAPI",
"THIRDPARTY",
"FIRSTPARTY",
"LOCALFOLDER",
]