pdf2xlsx / pyproject.toml
tonigi's picture
Restructure Gradio app layout
6786f44
raw
history blame contribute delete
461 Bytes
[project]
name = "pdf2xlsx"
version = "0.1.0"
description = "Extract tables from a PDF into an XLSX workbook."
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"pdf2docx>=0.5.12",
"typer>=0.24.1",
"xlsxwriter>=3.2.9",
]
[project.optional-dependencies]
gradio = [
"gradio>=5.23.3",
"pandas>=2.2.3",
]
[project.scripts]
pdf2xlsx = "pdf2xlsx.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"