Files
pdf-to-kcf/pyproject.toml
neutrino2211 b847133df2 Init
2025-12-19 20:41:08 +01:00

23 lines
502 B
TOML

[project]
name = "pdf-to-kcf"
version = "0.1.0"
description = "CLI tool to parse PDFs and convert them into structured insights using AI"
readme = "README.md"
authors = [
{ name = "neutrino2211", email = "neutrino2211@gmail.com" }
]
requires-python = ">=3.12"
dependencies = [
"pydantic-ai>=0.0.14",
"pypdf>=4.0.0",
"click>=8.1.0",
"pydantic>=2.0.0",
]
[project.scripts]
pdf-to-kcf = "pdf_to_kcf.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"