23 lines
564 B
TOML
23 lines
564 B
TOML
|
|
[build-system]
|
||
|
|
requires = ["setuptools>=68", "wheel"]
|
||
|
|
build-backend = "setuptools.build_meta"
|
||
|
|
|
||
|
|
[project]
|
||
|
|
name = "signing-service"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "FastAPI service for signing PDF documents using external secret managers"
|
||
|
|
requires-python = ">=3.11"
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
"python-dotenv>=1.0",
|
||
|
|
"fastapi>=0.110",
|
||
|
|
"uvicorn[standard]>=0.27",
|
||
|
|
"pydantic-settings>=2.2",
|
||
|
|
"google-cloud-secret-manager>=2.18",
|
||
|
|
"pyhanko>=0.25",
|
||
|
|
"cryptography>=42",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.optional-dependencies]
|
||
|
|
dev = ["pytest>=8.0", "pytest-cov", "ruff", "mypy"]
|