-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (46 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
54 lines (46 loc) · 1.08 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "production-rag-pipeline"
version = "1.0.0"
description = "Production-oriented RAG search pipeline with Bing, DuckDuckGo, extraction, chunking, and reranking."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
authors = [
{ name = "KazKozDev" }
]
dependencies = [
"beautifulsoup4>=4.12.0",
"curl-cffi>=0.7.0",
"PyYAML>=6.0.0"
]
[project.optional-dependencies]
extraction = [
"trafilatura>=1.6.0"
]
semantic = [
"numpy>=1.24.0",
"scikit-learn>=1.3.0",
"sentence-transformers>=2.2.0"
]
full = [
"trafilatura>=1.6.0",
"numpy>=1.24.0",
"scikit-learn>=1.3.0",
"sentence-transformers>=2.2.0"
]
[project.urls]
Homepage = "https://github.com/KazKozDev/production_rag_pipeline"
[project.scripts]
production-rag-pipeline = "production_rag_pipeline.cli:main"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 140
target-version = "py38"
[tool.ruff.lint]
select = ["E", "F", "I"]