-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 1.13 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (44 loc) · 1.13 KB
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
[project]
name = "fastapi_example"
version = "0.1.0"
description = ""
authors = [
{name = "IlyaGrebenschikov",email = "ilushagr22@gmail.com"}
]
readme = ""
requires-python = ">=3.12"
dependencies = [
"fastapi (>=0.119.1,<0.120.0)",
"pydantic-settings (>=2.11.0,<3.0.0)",
"uvicorn (>=0.38.0,<0.39.0)",
"sqlalchemy (>=2.0.44,<3.0.0)",
"dishka (>=1.7.2,<2.0.0)",
"alembic (>=1.17.0,<2.0.0)",
"asyncpg (>=0.30.0,<0.31.0)",
"pwdlib[argon2] (>=0.3.0,<0.4.0)",
"pyjwt (>=2.10.1,<3.0.0)",
"python-multipart (>=0.0.20,<0.0.21)",
"cryptography (>=46.0.3,<47.0.0)",
"ruff>=0.15.4",
"mypy>=1.19.1",
"aiohttp>=3.13.3",
"redis>=7.3.0",
"httpx>=0.28.1",
"faststream[cli,kafka]>=0.6.7",
"aiosmtplib>=5.1.0",
]
[project.optional-dependencies]
test = [
"pytest>=8.0.0,<9.0.0",
"pytest-asyncio>=0.24.0,<0.25.0",
"pytest-cov>=5.0.0,<6.0.0",
"httpx>=0.28.0,<0.29.0",
]
[project.scripts]
api = "fastapi_example.__main__:main"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
files = ["fastapi_example"]
python_version = "3.12"