-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (45 loc) · 1.05 KB
/
pyproject.toml
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 = "berkley-hack"
version = "0.1.0"
description = "LLM agents hackathon."
readme = "README.md"
authors = [
{ name = "shamik", email = "[email protected]" }
]
requires-python = ">=3.12"
dependencies = [
"duckduckgo-search>=6.3.3",
"fastapi[standard]>=0.115.4",
"google-generativeai>=0.8.3",
"googlesearch-python>=1.2.5",
"gradio>=5.7.0",
"lxml-html-clean>=0.3.1",
"newspaper4k>=0.9.3.1",
"openai>=1.52.2",
"phidata>=2.5.30",
"pycountry>=24.6.1",
"sqlalchemy>=2.0.36",
"wikipedia>=1.4.0",
"yfinance>=0.2.48",
]
[tool.uv]
dev-dependencies = [
"ipython>=8.29.0",
"jupyter>=1.1.1",
"pip>=24.3.1",
"pytest>=8.3.3",
"langchain-core>=0.3.14",
"langchain-openai>=0.2.4",
]
[tool.ruff.lint]
select = [
"C", "E", "F", "I", "B", "Q", "W", "UP", "W291", "I001", "F401"
]
fixable = ["ALL"]
[tool.ruff]
line-length = 88
[tool.ruff.lint.per-file-ignores]
"*.ipynb" = ["ALL"]
[tool.ruff.format]
docstring-code-format = true
docstring-code-line-length = 50