2025-01-02 02:14:30 +01:00
|
|
|
[project]
|
2025-01-10 17:33:10 +01:00
|
|
|
name = "oidc-fastapi-test"
|
2025-01-11 02:46:42 +01:00
|
|
|
version = "0.0.0"
|
2025-01-02 02:14:30 +01:00
|
|
|
description = "Add your description here"
|
|
|
|
readme = "README.md"
|
2025-01-09 23:41:32 +01:00
|
|
|
requires-python = ">=3.13"
|
2025-01-02 02:14:30 +01:00
|
|
|
dependencies = [
|
|
|
|
"authlib>=1.4.0",
|
|
|
|
"cachetools>=5.5.0",
|
|
|
|
"fastapi[standard]>=0.115.6",
|
|
|
|
"itsdangerous>=2.2.0",
|
|
|
|
"passlib[bcrypt]>=1.7.4",
|
2025-01-04 12:08:43 +01:00
|
|
|
"pydantic-settings>=2.7.1",
|
2025-01-02 02:14:30 +01:00
|
|
|
"python-jose[cryptography]>=3.3.0",
|
2025-01-09 23:41:32 +01:00
|
|
|
"requests>=2.32.3",
|
|
|
|
"sqlmodel>=0.0.22",
|
2025-01-02 02:14:30 +01:00
|
|
|
]
|
|
|
|
|
2025-01-09 23:41:32 +01:00
|
|
|
[project.scripts]
|
|
|
|
oidc-test = "oidc_test.main:main"
|
2025-01-03 12:38:47 +01:00
|
|
|
|
|
|
|
[dependency-groups]
|
2025-01-10 23:48:44 +01:00
|
|
|
dev = ["ipdb>=0.13.13", "pytest>=8.3.4"]
|
2025-01-09 23:41:32 +01:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
packages = ["src/oidc_test"]
|
|
|
|
|
|
|
|
[tool.uv]
|
|
|
|
package = true
|