-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (39 loc) · 966 Bytes
/
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
[tool.poetry]
name = "BaseFastAPI"
version = "0.1.0"
description = ""
authors = ["Fedorov Semen <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
fastapi = "^0.115.0"
pydantic = {extras = ["email"], version = "^2.9.2"}
uvicorn = {extras = ["standard"], version = "^0.32.0"}
pydantic-settings = "^2.5.2"
sqlalchemy = "^2.0.35"
asyncpg = "^0.29.0"
alembic = "^1.13.3"
orjson = "^3.10.7"
black = "^24.10.0"
gunicorn = "^23.0.0"
pytest = "^8.3.3"
pytest-asyncio = "^0.24.0"
taskiq = "^0.11.11"
aio-pika = "^9.5.4"
greenlet = "^3.1.1"
taskiq-aio-pika = "^0.4.1"
taskiq-redis = "^1.0.2"
syrupy = "^4.8.1"
pytest-env = "^1.1.5"
pytest-mock = "^3.14.0"
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
pre-commit = "^4.0.1"
[tool.pytest.ini_options]
env = [
"ENVIRONMENT=pytest",
]
asyncio_default_fixture_loop_scope = "function"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"