29 lines
703 B
TOML
29 lines
703 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "factuges-document-signing-service"
|
|
version = "0.3.1"
|
|
description = "FastAPI service for signing PDF documents using external secret managers"
|
|
requires-python = ">=3.11"
|
|
|
|
dependencies = [
|
|
"python-multipart",
|
|
"python-dotenv>=1.0",
|
|
"fastapi>=0.110",
|
|
"uvicorn[standard]>=0.27",
|
|
|
|
"pyhanko>=0.32",
|
|
"cryptography>=42",
|
|
|
|
# Infisical SDK for secret management
|
|
"infisicalsdk",
|
|
|
|
# Google Cloud Secret Manager SDK for secret management
|
|
# "google-cloud-secret-manager>=2.18",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest>=8.0", "pytest-cov", "ruff", "mypy"]
|