add pdftomd

This commit is contained in:
김경종
2026-05-08 16:42:19 +09:00
parent 551ab50735
commit 88d6b92283
99 changed files with 47332 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
[build-system]
requires = ["hatchling>=1.27"]
build-backend = "hatchling.build"
[project]
name = "convert-pdf-to-md"
version = "0.1.0"
description = "Local PDF-to-Markdown converter scaffold for math-heavy documents."
readme = "README.md"
requires-python = ">=3.12,<3.13"
dependencies = [
"pypdf>=6.10.2,<7",
]
[project.scripts]
pdf2md = "pdf2md.cli:main"
[dependency-groups]
dev = [
"pytest>=8.3",
]
[tool.hatch.build.targets.wheel]
packages = ["src/pdf2md"]