mirror of
https://github.com/rendercv/rendercv.git
synced 2026-04-17 21:39:00 -04:00
- 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`.
15 lines
292 B
TOML
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 }
|