-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1.06 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (38 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pdf-quality-report"
version = "0.1.0"
description = "Generate deterministic quality reports for Docling parser output."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "Michael Gaedicke" }
]
dependencies = []
[project.optional-dependencies]
dev = [
"pytest>=8",
"ruff>=0.4",
]
docling = [
"docling>=2",
]
[project.scripts]
pdf-quality-convert = "pdf_quality_report.convert:main"
pdf-quality-report = "pdf_quality_report.report:main"
pdf-quality-markdown = "pdf_quality_report.to_markdown:main"
pdf-quality-chunk = "pdf_quality_report.chunk:main"
pdf-quality-chunk-review = "pdf_quality_report.chunk_review:main"
pdf-quality-review-findings = "pdf_quality_report.review_findings:main"
pdf-quality-review-bundle = "pdf_quality_report.review_bundle:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "C4", "SIM"]