factuges-document-signing-s.../pyproject.toml

29 lines
685 B
TOML
Raw Normal View History

2026-01-22 10:37:35 +00:00
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "signing-service"
2026-01-22 11:30:30 +00:00
version = "0.1.1"
2026-01-22 10:37:35 +00:00
description = "FastAPI service for signing PDF documents using external secret managers"
requires-python = ">=3.11"
dependencies = [
2026-01-22 11:30:30 +00:00
"python-multipart",
2026-01-22 10:37:35 +00:00
"python-dotenv>=1.0",
"fastapi>=0.110",
"uvicorn[standard]>=0.27",
2026-01-22 11:30:30 +00:00
2026-01-22 10:37:35 +00:00
"pyhanko>=0.25",
"cryptography>=42",
2026-01-22 11:30:30 +00:00
# Infisical SDK for secret management
"infisicalsdk",
# Google Cloud Secret Manager SDK for secret management
# "google-cloud-secret-manager>=2.18",
2026-01-22 10:37:35 +00:00
]
[project.optional-dependencies]
dev = ["pytest>=8.0", "pytest-cov", "ruff", "mypy"]