-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (62 loc) · 1.66 KB
/
pyproject.toml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[tool.poetry]
name = "gptparse"
version = "0.3.0"
description = "A tool for converting PDF documents to Markdown using OCR and vision language models"
authors = ["Sanjay Nadhavajhala <[email protected]>"]
readme = "README.md"
packages = [{include = "gptparse"}]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
click = "8.1.7"
pdf2image = "1.17.0"
Pillow = "10.4.0"
PyPDF2 = "3.0.1"
requests = "2.32.3"
tqdm = "4.66.5"
langchain-anthropic = "0.2.3"
langchain-openai = "^0.2.6"
langchain-google-genai = "2.0.1"
beautifulsoup4 = "4.12.3"
cffi = "1.17.1"
certifi = "2024.8.30"
charset-normalizer = "3.4.0"
decorator = "5.1.1"
filelock = "3.16.1"
fsspec = "2024.9.0"
idna = "3.10"
platformdirs = "4.3.6"
psutil = "6.0.0"
PyYAML = "6.0.2"
six = "1.16.0"
traitlets = "5.14.3"
google-ai-generativelanguage = "0.6.10"
google-api-core = "2.21.0"
google-auth = "2.35.0"
google-generativeai = "0.8.3"
huggingface-hub = "0.25.2"
grpcio = "1.66.2"
grpcio-status = "1.66.2"
httpx = "0.27.2"
httpcore = "1.0.6"
markdown-it-py = "3.0.0"
mistune = "3.0.2"
pymupdf4llm = "^0.0.17"
pycryptodome = "^3.21.0"
docling = "^2.4.2"
[tool.poetry.scripts]
gptparse = "gptparse.cli:main"
[tool.poetry.urls]
Homepage = "https://github.com/gptscript-ai/gptparse"
Repository = "https://github.com/gptscript-ai/gptparse"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# Keep the existing cibuildwheel configuration
[tool.cibuildwheel]
build = ["cp39-*", "cp310-*", "cp311-*"]
skip = ["*-win32", "*-manylinux_i686", "*-musllinux_i686"]