-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
64 lines (58 loc) · 1.45 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 = "dating-telegram-bot-webapp-2-0"
version = "0.1.0"
description = "Dating-Telegram-Bot-Webapp-2.0 Dating Telegram Bot WebApp allows users to meet through the Telegram bot, as well as use a convenient web interface to view profiles, send messages and manage interactions with other users."
authors = ["AlexanderLukash <sashass20062727@gmail.com>"]
license = "MIT"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
fastapi = "^0.111.1"
aiogram = "^3.10.0"
environs = "^11.0.0"
betterlogging = "^1.0.0"
punq = "^0.7.0"
motor = "^3.5.1"
aiobotocore = "^2.15.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.7.1"
pytest = "^8.3.2"
pydantic-settings = "^2.4.0"
faker = "^30.6.0"
pytest-asyncio = "^0.24.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",
]