This commit is contained in:
2023-08-06 14:05:34 +02:00
parent 217adb85ed
commit 2f1fdecd5f
21 changed files with 273 additions and 1053 deletions

View File

@@ -3,22 +3,20 @@ name = "fastapi_file_server"
version = "0.1.0"
description = ""
authors = ["Kurbanov Bulat <kurbanovbul@gmail.com>"]
license = "Apache 2.0"
license = "MIT"
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "^0.95.1"
uvicorn = {extras = ["standard"], version = "^0.22.0"}
ormar = {extras = ["postgresql"], version = "^0.12.1"}
alembic = "^1.10.4"
pydantic = {extras = ["dotenv"], version = "^1.10.4"}
fastapi = "^0.101.0"
uvicorn = {extras = ["standard"], version = "^0.23.2"}
pydantic = "^2.1.1"
python-multipart = "^0.0.6"
httpx = "^0.24.0"
telethon = "^1.28.5"
prometheus-fastapi-instrumentator = "^6.0.0"
telethon = "^1.29.2"
prometheus-fastapi-instrumentator = "^6.1.0"
uvloop = "^0.17.0"
orjson = "^3.8.12"
sentry-sdk = "^1.22.2"
orjson = "^3.9.2"
sentry-sdk = "^1.29.2"
pydantic-settings = "^2.0.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"