18 lines
430 B
TOML
18 lines
430 B
TOML
[project]
|
|
name = "fastapi-oidc-test"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"authlib>=1.4.0",
|
|
"cachetools>=5.5.0",
|
|
"fastapi[standard]>=0.115.6",
|
|
"itsdangerous>=2.2.0",
|
|
"passlib[bcrypt]>=1.7.4",
|
|
"pydantic-settings>=2.7.0",
|
|
"python-jose[cryptography]>=3.3.0",
|
|
]
|
|
|
|
[tool.uv.sources]
|
|
fastapi = { path = "../fastapi", editable = true }
|