Initial commit

This commit is contained in:
phil 2025-01-02 02:14:30 +01:00
commit 4be2036f3b
10 changed files with 1303 additions and 0 deletions

18
pyproject.toml Normal file
View file

@ -0,0 +1,18 @@
[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 }