-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (59 loc) · 1.33 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (59 loc) · 1.33 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
[project]
name = "sinkduce"
version = "1.0.2"
description = "One-click deployable RAG Agent system"
license = { text = "AGPL-3.0-or-later" }
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.34.0",
"pydantic>=2.10.0",
"pydantic-settings>=2.7.0",
"pyyaml>=6.0.2",
"qdrant-client>=1.13.0",
"openai>=1.60.0",
"cohere>=5.13.0",
"mcp>=1.0.0",
"pdfplumber>=0.11.0",
"mammoth>=1.8.0",
"python-docx>=1.2.0",
"openpyxl>=3.1.0",
"python-pptx>=1.0.0",
"markdown>=3.7",
"chardet>=5.2.0",
"beautifulsoup4>=4.12.0",
"markdownify>=1.2.0",
"tiktoken>=0.8.0",
"httpx>=0.28.0",
"pytesseract>=0.3.10",
"Pillow>=10.0.0",
"regex>=2024.0.0",
"dashscope>=1.20.0",
]
[project.optional-dependencies]
diarization = [
"funasr>=1.1.0",
"torch>=2.0.0",
"torchaudio>=2.0.0",
"librosa>=0.10.0",
"soundfile>=0.12.0",
]
dev = [
"pytest>=8.3.0",
"pytest-asyncio>=0.25.0",
"pytest-httpx>=0.35.0",
"ruff>=0.9.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint.per-file-ignores]
"src/main.py" = ["E402"]