add auth deps

This commit is contained in:
Jakub Miazek
2023-07-22 14:05:40 +02:00
parent 8ef490cc7f
commit cc0b4b924d
2 changed files with 244 additions and 24 deletions

View File

@@ -11,7 +11,7 @@ python = "^3.11"
alembic = "*"
asyncpg = "*"
httpx = "*"
pydantic = "*"
pydantic = {version = "*", extras = ["email"]}
sqlalchemy = "*"
fastapi = "*"
uvicorn = { extras = ["standard"], version = "*" }
@@ -26,7 +26,10 @@ ipython = "*"
pytest-cov = "*"
pytest-asyncio = "*"
ruff = "*"
pydantic-settings = "^2.0.1"
pydantic-settings = "*"
cryptography = "*"
pyjwt = {version = "*", extras = ["cryptography"]}
redis = "*"
[tool.poetry.group.dev.dependencies]
tryceratops = "^1.1.0"