-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (60 loc) · 1.56 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (60 loc) · 1.56 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "finrag"
version = "0.1.0"
description = "Production-grade, citation-enforced financial research assistant over SEC filings"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
dependencies = [
"httpx>=0.27.0",
"pydantic>=2.6.0",
"pydantic-settings>=2.2.0",
"python-dotenv>=1.0.0",
"structlog>=24.1.0",
"beautifulsoup4>=4.12.0",
"lxml>=5.1.0",
"tiktoken>=0.6.0",
"chromadb>=0.5.0",
"sentence-transformers>=3.0.0,<3.4.0",
"transformers>=4.41.0,<4.52.0",
"rank-bm25>=0.2.2",
"langfuse>=2.0.0,<3.0.0",
"langgraph>=0.4.0",
"langchain-core>=0.3.0",
"langchain-google-genai>=2.1.0",
"pyyaml>=6.0",
"fastapi>=0.115.0",
"uvicorn[standard]>=0.34.0",
"sse-starlette>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=4.1.0",
"pytest-dotenv>=0.5.2",
"ruff>=0.3.0",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
env = [
"EDGAR_USER_AGENT=CI ci@finrag.internal",
"FINRAG_INIT_PIPELINE=false",
]
[tool.ruff]
target-version = "py311"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.ruff.lint.per-file-ignores]
"src/finrag/evaluation/golden_dataset.py" = ["E501"]
"tests/test_chunker.py" = ["E501"]
"tests/test_citation.py" = ["E501"]
"tests/test_hybrid.py" = ["E501"]
"tests/test_judge.py" = ["E501"]