-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1.04 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
[project]
name = "paperfast"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"ddgs>=9.10.0",
"duckduckgo-search>=8.1.1",
"faiss-cpu>=1.13.2",
"langchain-community>=0.4.1",
"langchain-mcp-adapters>=0.2.1",
"langchain[openai]>=1.2.0",
"langfuse>=3.11.2",
"langgraph>=1.0.5",
"langgraph-api>=0.6.14",
"langgraph-sdk>=0.3.1",
"pydantic-settings>=2.12.0",
"pypdf>=6.5.0",
"python-dotenv>=1.2.1",
"streamlit>=1.52.2",
]
[dependency-groups]
dev = [
"black>=25.12.0",
"isort>=7.0.0",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"pytest-mock>=3.15.1",
"pytest-watcher>=0.6.0",
"ruff>=0.14.10",
]
[tool.isort]
profile = "black"
[tool.poe.tasks.lint]
shell = "black . && isort . && ruff check ."
[tool.poe.tasks.test]
cmd = "pytest -v --cov=. --cov-report=term --cov-report=html:htmlcov"
[tool.poe.tasks.watch-test]
cmd = "ptw . --now --clear"
[tool.poe.tasks.run]
cmd = "streamlit run app/main.py"
# envfile = ".env"