-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.1 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (46 loc) · 1.1 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
[project]
name = "papertrace"
version = "0.1.0"
description = "Agentic RAG assistant over the RAG/agents/eval/LLMOps slice of arXiv"
requires-python = ">=3.12"
dependencies = [
"beautifulsoup4>=4.15.0",
"duckdb>=1.5.5",
"fastapi>=0.141.1",
"fastembed>=0.8.0",
"httpx>=0.28.1",
"langchain>=1.3.14",
"langchain-anthropic>=1.5.4",
"langchain-openai>=1.4.3",
"langfuse>=4.14.3",
"langgraph>=1.2.10",
"lxml>=6.1.1",
"prefect>=3.8.2",
"psycopg[binary]>=3.3.4",
"pydantic-settings>=2.15.0",
"qdrant-client>=1.19.0",
"sentence-transformers>=5.7.0",
"uvicorn[standard]>=0.52.1",
]
[dependency-groups]
dev = [
"ruff>=0.9",
"mypy>=1.14",
"pytest>=8.3",
"types-beautifulsoup4>=4.12.0.20250516",
"lxml-stubs>=0.5.1",
]
[tool.uv]
package = false
[tool.ruff]
line-length = 100
target-version = "py312"
extend-exclude = ["web", "data", ".scratch"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.mypy]
strict = true
files = ["core", "api", "ingest", "eval", "tests"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]