oidc-fastapi-test/pyproject.toml

48 lines
903 B
TOML
Raw Normal View History

2025-01-02 02:14:30 +01:00
[project]
name = "oidc-fastapi-test"
2025-02-24 19:56:00 +01:00
#version = "0.0.0"
dynamic = ["version"]
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",
2025-01-28 19:48:35 +01:00
"httpx>=0.28.1",
2025-01-02 02:14:30 +01:00
"itsdangerous>=2.2.0",
"passlib[bcrypt]>=1.7.4",
"pkce>=1.0.3",
2025-01-04 12:08:43 +01:00
"pydantic-settings>=2.7.1",
2025-01-28 19:48:35 +01:00
"pyjwt>=2.10.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-02-24 19:56:00 +01:00
dev = [
"dunamai>=1.23.0",
"ipdb>=0.13.13",
"pytest>=8.3.4",
]
2025-01-09 23:41:32 +01:00
[build-system]
2025-02-24 19:56:00 +01:00
requires = ["hatchling", "uv-dynamic-versioning"]
2025-01-09 23:41:32 +01:00
build-backend = "hatchling.build"
2025-02-24 19:56:00 +01:00
[tool.hatch.version]
source = "uv-dynamic-versioning"
2025-01-09 23:41:32 +01:00
[tool.hatch.build.targets.wheel]
packages = ["src/oidc_test"]
[tool.uv]
package = true
2025-02-06 13:27:14 +01:00
[tool.black]
line-length = 98