-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 1.18 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
[project]
name = "dynograph"
version = "0.1.0"
description = "Dynamic LangGraph generation system with retrieval and refinement"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"langgraph>=0.2.45", # LangGraph v1.0 alpha
"langchain>=0.3.7",
"langchain-anthropic>=0.3.0",
"langchain-openai>=0.2.9",
"langchain-core>=0.3.15",
"langchain-community>=0.3.0", # For tools like DuckDuckGo, Wikipedia
"langchain-tavily>=0.2.0", # Tavily search - primary web search tool
"sentence-transformers>=3.3.1",
"sqlite-vec>=0.1.6",
"click>=8.1.7",
"rich>=13.9.4",
"pydantic>=2.10.3",
"python-dotenv>=1.0.1",
"numpy>=2.1.3",
"ddgs>=0.1.0", # DuckDuckGo search (fallback if no Tavily API key)
"wikipedia>=1.4.0", # Wikipedia API wrapper
"langchain-experimental>=0.3.0", # For Python REPL and other experimental tools
]
[project.scripts]
dynograph = "dynograph.cli.main:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/dynograph"]
[tool.uv]
dev-dependencies = [
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
"black>=24.10.0",
"ruff>=0.8.4",
]