28 lines
532 B
TOML
28 lines
532 B
TOML
[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",
|
|
]
|
|
ui-build = [
|
|
"pyinstaller>=6.20,<7",
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/pdf2md", "src/pdf2md_ui"]
|