-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (35 loc) · 904 Bytes
/
pyproject.toml
File metadata and controls
38 lines (35 loc) · 904 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
[tool.poetry]
name = "llmdocparser"
version = "0.1.6.1"
description = "Using LLM to parse PDF and get better chunk for retrieval"
authors = ["FreddieChan <FreddieChan992@gmail.com>"]
readme = "README.md"
packages = [
{ include = "llmdocparser" },
]
repository = "https://github.com/lazyFrogLOL/llmdocparser"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
setuptools="71.1.0"
shapely = "^2.0.1"
pymupdf = "^1.24.7"
python-dotenv = "^1.0.0"
paddlepaddle="2.6.1"
paddleocr="2.8.1"
openpyxl="3.1.5"
premailer="3.10.0"
numpy="1.26.4"
langchain="0.2.11"
langchain_openai="0.1.17"
langchain_community="0.2.10"
pandas="2.2.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
pytest-asyncio = "^0.21.1"
[[tool.poetry.source]]
name = "mirrors"
url = "https://pypi.tuna.tsinghua.edu.cn/simple/"
priority = "primary"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"