forked from Studio-Yandex-Practicum/ProCharity_back_2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (63 loc) · 1.39 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
66
67
68
69
70
[tool.poetry]
name = "procharity-back-2-0"
version = "0.1.0"
description = ""
authors = ["Your Name <[email protected]>"]
readme = "README.md"
packages = [{include = "src"}]
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
(
/(
| .env
| .env.example
| .git
| __pycache__
| venv/
| env/
| .*/tests/*
| .*/migrations/*
| .*/migrations/*
)/
)
'''
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 120
skip = ['src/core/db/migrations/',]
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "^0.100.0"
uvicorn = "^0.21.1"
sqlalchemy = "^2.0.9"
alembic = "^1.10.3"
asyncpg = "^0.27.0"
greenlet = "^2.0.2"
python-telegram-bot = {extras = ["rate-limiter"], version = "^20.2"}
structlog = "^23.1.0"
asgi-correlation-id = "^4.2.0"
rich = "^13.3.5"
fastapi-mail = "^1.4.0"
dependency-injector = "^4.41.0"
passlib = "^1.7.4"
python-jose = "^3.3.0"
fastapi-jwt = "^0.1.12"
fastapi-users = {version = "12.1.2", extras = ["sqlalchemy"]}
aiohttp = "^3.9.5"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.0.0"
black = "^23.3.0"
isort = "^5.12.0"
pyngrok = "^6.0.0"
python-dotenv = "^1.0.0"
pre-commit = "^3.3.2"
gitpython = "^3.1.32"
faker = "19.13.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"