forked from langchain-ai/deep-agents-from-scratch
-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (53 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
61 lines (53 loc) · 1.27 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
[project]
name = "deep_agents_from_scratch"
version = "0.1.0"
description = "Build a deep agent from scratch"
requires-python = ">=3.11, <3.14"
dependencies = [
"langgraph>=1.0.4",
"langchain>=1.1.0",
"langchain-anthropic>=1.0.4",
"langchain_community>=0.4.1",
"langchain_mcp_adapters>=0.1.13",
"pydantic>=2.12.4",
"rich>=14.2.0",
"jupyter>=1.1.1",
"ipykernel>=7.1.0",
"httpx>=0.28.1",
"markdownify>=1.2.2",
"deepagents>=0.2.7",
"langchain-teddynote>=0.5.4",
"tavily-python>=0.7.13",
]
[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 = ["deep_agents_from_scratch"]
[tool.setuptools.package-dir]
"deep_agents_from_scratch" = "src/deep_agents_from_scratch"
[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"