forked from langchain-ai/new-langgraph-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (63 loc) · 1.51 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (63 loc) · 1.51 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
69
70
71
72
[project]
name = "agent"
version = "0.0.1"
description = "Starter template for making a new agent LangGraph."
authors = [
{ name = "William Fu-Hinthorn", email = "13333726+hinthornw@users.noreply.github.com" },
]
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.11"
dependencies = [
"duckduckgo-search==8.1.1",
"langchain>=0.3.27",
"langchain-community>=0.3.29",
"langchain-mcp-adapters>=0.1.9",
"langchain-ollama>=0.3.8",
"langchain-openai>=0.3.33",
"langgraph>=0.2.6",
"langgraph-cli[inmem]>=0.4.2",
"langsmith==0.3.45",
"motor>=3.7.1",
"pymongo>=4.15.1",
"python-dotenv>=1.0.1",
]
[project.optional-dependencies]
dev = ["mypy>=1.11.1", "ruff>=0.6.1"]
[build-system]
requires = ["setuptools>=73.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["ai"]
[tool.setuptools.package-dir]
"ai" = "src/ai"
[tool.setuptools.package-data]
"*" = ["py.typed"]
[tool.ruff]
lint.select = [
"E", # pycodestyle
"F", # pyflakes
"T201",
"UP",
]
lint.ignore = [
"UP006",
"UP007",
# We actually do want to import from typing_extensions
"UP035",
# Relax the convention by _not_ requiring documentation for every function parameter.
"D417",
"E501",
]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["D", "UP"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[dependency-groups]
dev = [
"anyio>=4.7.0",
"langgraph-cli[inmem]>=0.2.8",
"mypy>=1.13.0",
"pytest>=8.3.5",
"ruff>=0.8.2",
]