-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1.01 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (39 loc) · 1.01 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.backends.legacy:build"
[project]
name = "rag-knowledge-assistant"
version = "1.0.0"
description = "Production-ready RAG system for SMEs — turn your documents into an intelligent knowledge base"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.11"
dependencies = [
"langchain>=0.3.0",
"langchain-community>=0.3.0",
"langchain-openai>=0.2.0",
"langchain-text-splitters>=0.3.0",
"faiss-cpu>=1.9.0",
"pypdf>=5.0.0",
"sentence-transformers>=3.3.0",
"streamlit>=1.40.0",
"python-dotenv>=1.0.0",
"tiktoken>=0.8.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-cov>=5.0.0",
"ruff>=0.8.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "UP", "RUF"]
ignore = ["E501"]