-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (29 loc) · 909 Bytes
/
pyproject.toml
File metadata and controls
30 lines (29 loc) · 909 Bytes
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
[project]
name = "fastapi-nested-jwt-authentication"
version = "1.0.0"
description = "Complete FastAPI JWT authentication example using Nested JWT (JWS + JWE), rotating access/refresh tokens, token blacklist and revocation on logout, secure HttpOnly cookies, and production-focused security best practices for modern backend authentication."
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"alembic>=1.18.4",
"asyncpg>=0.31.0",
"cryptography>=46.0.5",
"fastapi[standard]>=0.135.1",
"hypercorn>=0.18.0",
"jwcrypto>=1.5.6",
"loguru>=0.7.3",
"orjson>=3.11.7",
"psycopg>=3.3.3",
"psycopg-binary>=3.3.3",
"psycopg2-binary>=2.9.11",
"pwdlib[argon2]>=0.3.0",
"py-automapper>=2.2.0",
"pydantic>=2.12.5",
"pydantic-settings>=2.13.1",
"sqlalchemy>=2.0.48",
"stackprinter>=0.2.12",
]
[dependency-groups]
dev = [
"ruff>=0.15.4",
]