Files
pdf-extraction-agenda/pyproject.toml
2025-03-10 21:01:40 +03:00

32 lines
652 B
TOML

[project]
name = "pdf-extraction-agenda"
version = "0.1.0"
description = "Overview of pipelines related to PDF document processing"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"colorlog>=6.9.0",
"datasets>=3.3.2",
"huggingface-hub[hf-transfer]>=0.29.2",
"pandas>=2.2.3",
"pydantic>=2.10.6",
"rapidfuzz>=3.12.2",
"tabulate>=0.9.0",
"tqdm>=4.67.1",
]
[tool.ruff]
line-length = 120
lint.ignore = ["PLR"]
lint.extend-select = ["I", "UP", "PL"]
target-version = "py312"
[dependency-groups]
docling = [
"docling>=2.25.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"