-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (47 loc) · 1.14 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (47 loc) · 1.14 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
[project]
name = "rag"
version = "0.1.0"
description = "RAG pipeline for APT threat intelligence analysis"
authors = [
{ name = "bartek", email = "bartek.dmitruk@gmail.com" }
]
requires-python = ">=3.12"
dependencies = [
"chromadb>=1.2.1",
"httpx>=0.28.1",
"jupyter>=1.1.1",
"langchain>=1.0.2",
"langchain-chroma>=1.0.0",
"langchain-community>=0.4",
"langchain-huggingface>=1.0.0",
"langchain-ollama>=1.0.0",
"langchain-text-splitters>=1.0.0",
"loguru>=0.7.3",
"matplotlib>=3.10.8",
"nbconvert>=7.16.6",
"pandas>=2.3.3",
"pdfplumber>=0.11.7",
"pydantic>=2.12.3",
"pymupdf>=1.26.5",
"pymupdf4llm>=0.0.27",
"python-dotenv>=1.2.1",
"rich>=14.2.0",
"scipy>=1.16.3",
"seaborn>=0.13.2",
"sentence-transformers>=5.1.2",
"torch>=2.9.0",
"typer>=0.20.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=8.4.2",
"pytest-cov>=7.0.0",
"pytest-mock>=3.15.1",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = ["-v", "--cov=rag", "--cov-report=term-missing"]