23 lines
502 B
TOML
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"
|