oidc-fastapi-test/pyproject.toml

34 lines
666 B
TOML
Raw Normal View History

2025-01-02 02:14:30 +01:00
[project]
name = "oidc-fastapi-test"
2025-01-02 02:14:30 +01:00
version = "0.1.0"
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-04 12:08:43 +01:00
dev = ["ipdb>=0.13.13"]
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