-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (80 loc) · 1.87 KB
/
pyproject.toml
File metadata and controls
88 lines (80 loc) · 1.87 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sliderag"
version = "0.1.0"
authors = [
{name = ""}
]
description = "SlideRAG: document parsing and RAG runtime toolkit"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"huggingface_hub",
"lightrag-hku",
"mineru[core]",
"tqdm",
"anthropic",
"openai",
"streamlit",
"loguru",
"Pillow>=10.0.0",
"reportlab>=4.0.0",
"markdown>=3.4.0",
"weasyprint>=60.0",
"pygments>=2.10.0",
]
[project.scripts]
sliderag-qq = "client.qq.runtime:main"
sliderag-weixin = "client.weixin.runtime:main"
sliderag-feishu = "client.feishu.runtime:main"
sliderag-whatsapp = "client.whatsapp.runtime:main"
[project.optional-dependencies]
qq = ["qq-botpy"]
feishu = ["lark-oapi"]
weixin = [
"httpx",
"qrcode[pil]",
]
whatsapp = [
"websockets>=12.0",
]
channels = [
"qq-botpy",
"lark-oapi",
"httpx",
"qrcode[pil]",
"websockets>=12.0",
]
[project.urls]
Homepage = "https://github.com/Hitlh/SlideRAG"
Documentation = "https://github.com/Hitlh/SlideRAG/blob/main/README.md"
Repository = "https://github.com/Hitlh/SlideRAG"
Issues = "https://github.com/Hitlh/SlideRAG/issues"
[tool.uv]
dev-dependencies = [
"pytest>=6.0",
"pytest-asyncio",
"black",
"isort",
"flake8",
"mypy",
"openai",
"python-dotenv",
]
[tool.setuptools.packages.find]
include = ["raganything*", "rag_agent*", "client*"]
[tool.setuptools]
include-package-data = true
[tool.ruff]
target-version = "py310"