Files
SpecterOps-Nemesis/projects/document_conversion/pyproject.toml
T
Lee Chagolla-Christensen 58dd461532 Refactor document conversion service into Dapr workflow
- Restructure document_conversion to match into workflow structure
- PDF analyzer: use PyMuPDF and extract extensive metadata
- Add PDF test suite with encrypted/unencrypted fixtures
- Add Tika Tesseract OCR configuration support example
- Update Dapr configurations for new document_conversion component
- Remove deprecated helpers from common lib
- Update queue constants and workflow setup
2025-11-06 01:30:10 -08:00

41 lines
980 B
TOML

[tool.poetry]
name = "document_conversion"
version = "0.1.0"
description = "Document conversion service service that runs Tika, calls Gotenberg, and extracts strings"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.12,<3.14"
fastapi = "^0.121.0"
uvicorn = "^0.34.0"
dapr = "1.16.0"
dapr-ext-fastapi = "1.16.0"
dapr-ext-workflow = "1.16.0"
structlog = "^25.1.0"
pydantic = "^2.10.4"
typing-extensions = "^4.12.2"
minio = "^7.2.14"
common = { path = "../../libs/common", develop = true }
jpype1 = "^1.5.2"
requests = "^2.32.3"
httpx = "^0.28.1"
psycopg = {extras = ["pool"], version = "^3.2.9"}
olefile = "^0.47"
msoffcrypto-tool = "^5.4.2"
protobuf = "6.31.1"
asyncpg = "^0.30.0"
pymupdf = "^1.26.6"
[tool.poetry.group.dev.dependencies]
ruff = "^0.9.2"
pytest = "^8.4.2"
pytest-asyncio = "^1.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
document_conversion = "document_conversion.controller:app"