This commit is contained in:
neutrino2211
2025-12-19 20:41:08 +01:00
commit b847133df2
15 changed files with 4307 additions and 0 deletions

22
pyproject.toml Normal file
View File

@@ -0,0 +1,22 @@
[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"