-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
51 lines (46 loc) · 1.24 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
[project]
name = "pdfdeal"
version = "1.0.2"
authors = [{ name = "Menghuan1918", email = "[email protected]" }]
description = "A python wrapper for the Doc2X API and comes with native texts processing (to improve texts recall in RAG)."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["httpx[http2]>=0.23.1, <1", "pypdf"]
[project.optional-dependencies]
tools = ["emoji", "Pillow", "reportlab", "beautifulsoup4"]
rag = [
"emoji",
"Pillow",
"reportlab",
"oss2",
"boto3",
"minio",
"beautifulsoup4",
]
dev = [
"pytest",
"emoji",
"Pillow",
"reportlab",
"oss2",
"boto3",
"minio",
"beautifulsoup4",
]
[project.urls]
Issues = "https://github.com/Menghuan1918/pdfdeal/issues"
Documentation = "https://menghuan1918.github.io/pdfdeal-docs/"
Source = "https://github.com/Menghuan1918/pdfdeal"
Changelog = "https://menghuan1918.github.io/pdfdeal-docs/changes/"
[project.scripts]
doc2x = "pdfdeal.CLI.doc2x:main"
[tool.hatch.build.targets.wheel]
packages = ["src/pdfdeal"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"