-
Notifications
You must be signed in to change notification settings - Fork 975
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (58 loc) · 1.35 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (58 loc) · 1.35 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
[project]
name = "ollama-deep-researcher"
version = "0.0.1"
description = "Fully local web research and summarization assistant with Ollama and LangGraph."
authors = [
{ name = "Lance Martin" }
]
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
dependencies = [
"langgraph>=1.1.0",
"langchain-community>=0.4.0",
"tavily-python>=0.7.23",
"langchain-ollama>=1.0.0",
"duckduckgo-search>=7.3.0",
"langchain-openai>=1.1.14",
"openai>=2.31.0",
"httpx>=0.28.1",
"markdownify>=0.11.0",
"python-dotenv==1.2.3",
]
[project.optional-dependencies]
dev = ["mypy>=1.11.1", "ruff>=0.15.10"]
[build-system]
requires = ["setuptools>=73.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["ollama_deep_researcher"]
[tool.setuptools.package-dir]
"ollama_deep_researcher" = "src/ollama_deep_researcher"
[tool.setuptools.package-data]
"*" = ["py.typed"]
[tool.ruff]
lint.select = [
"E", # pycodestyle
"F", # pyflakes
"I", # isort
"D", # pydocstyle
"D401", # First line should be in imperative mood
"T201",
"UP",
]
lint.ignore = [
"UP006",
"UP007",
"UP035",
"D417",
"E501",
]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["D", "UP"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[dependency-groups]
dev = [
"ruff>=0.12.7",
]