-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 863 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[project]
name = "pdf2sqlite"
version = "0.0.3"
description = "Builds a searchable sqlite knowledge base out of pdf data"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
maintainers = [
{ name="Graham Leach-Krouse", email="gleach-krouse@draper.com" }
]
dependencies = [
"boto3",
"pypdf == 6.0.0",
"litellm",
"gmft",
"sqlite-vec",
"scikit-learn",
"numpy",
"rich",
"rich-argparse>=1.7.1",
"mcp>=0.4.1",
]
requires-python = ">=3.12"
[dependency-groups]
dev = [ "pytest" ]
[project.urls]
Homepage = "https://github.com/draperlaboratory/pdf2sqlite"
Issues = "https://github.com/draperlaboratory/pdf2sqlite/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
pdf2sqlite = "pdf2sqlite.pdf2sqlite:main"
pdf2sqlite-mcp = "pdf2sqlite.mcp_server.__main__:main"