Инициализация проекта на FastAPI

This commit is contained in:
2024-07-31 16:45:43 +09:00
commit ece09af415
4 changed files with 1351 additions and 0 deletions

9
pyproject.toml Normal file
View File

@ -0,0 +1,9 @@
[tool.poetry]
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
fastapi = "^0.111.1"
uvicorn = {extras = ["standart"], version = "^0.30.3"}
pydantic-settings = "^2.4.0"
sqlalchemy = {extras = ["asyncio"], version = "^2.0.31"}
aioodbc = "^0.5.0"