Files
rendercv/scripts/ats_proof/pyproject.toml
Sina Atalay 59c02dd957 Add ATS compatibility testing suite with PDF rendering, analysis, and reporting
- Introduced `scripts/ats_proof` directory containing tools for ATS compatibility testing.
- Added scripts for rendering PDFs, analyzing text extraction, and evaluating results against ground truth.
- Created a report generation script to summarize ATS compatibility findings.
- Updated `.gitignore` to exclude generated artifacts and added `pyproject.toml` for project dependencies.
- Included new documentation on ATS compatibility testing in `docs/user_guide/ats_compatibility.md`.
2026-03-19 22:16:56 +03:00

15 lines
292 B
TOML

[project]
name = "ats-proof"
version = "1.0.0"
description = "ATS compatibility testing suite for RenderCV"
requires-python = ">=3.12"
dependencies = [
"rendercv[full]",
"ruamel-yaml>=0.18",
"pymupdf>=1.24",
"httpx>=0.27",
]
[tool.uv.sources]
rendercv = { workspace = true }