-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
54 lines (48 loc) · 1.16 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
[project]
name = "hungry-for-research"
version = "0.1.0"
description = "A local RAG-powered assistant for research papers"
readme = "README.md"
requires-python = "==3.12.*"
# core dependencies
dependencies = [
"streamlit",
"langchain>=0.3.0", # pin to recent
"langchain-community>=0.3.30", # community integrations
"chromadb>=0.5.0",
"sentence-transformers>=2.7.0",
"pypdf",
"python-dotenv",
"ollama", # wrapper package
"beautifulsoup4",
"requests",
"nltk",
"tenacity",
"tqdm",
"orjson",
"langchain-cli>=0.0.37",
"langchain-huggingface>=0.3.1",
"langchain-chroma>=0.2.6",
"langchain-ollama>=0.3.10",
"neo4j>=6.0.2",
"instructor>=1.11.3",
"openai>=1.109.1",
]
[dependency-groups]
# keep dev deps separate from core deps
dev = [
"ruff>=0.5.0", # linting
"black>=24.0", # formatting
"pytest>=8.0", # testing
]
# optional but nice: ruff & black defaults
[tool.ruff]
target-version = "py312"
[tool.black]
target-version = ["py312"]
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["*"]