-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
108 lines (93 loc) · 2.56 KB
/
Copy pathpyproject.toml
File metadata and controls
108 lines (93 loc) · 2.56 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[build-system]
requires = ["hatchling>=1.27,<2"]
build-backend = "hatchling.build"
[project]
name = "agent-engineering-lab"
version = "2.0.0"
description = "面向中文开发者的 Agent Systems Engineering 可执行实验室"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.11,<3.14"
authors = [{ name = "Jason Xun" }]
keywords = ["agent", "langchain", "langgraph", "evaluation", "education"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Typing :: Typed",
]
dependencies = [
"langchain>=1.3,<2",
"langgraph>=1.2,<2",
"pydantic>=2.13,<3",
"pyyaml>=6,<7",
]
[project.optional-dependencies]
provider-openai = ["langchain-openai>=1.4,<2"]
eval-cloud = ["langsmith>=0.10,<1"]
persistence = ["langgraph-checkpoint-sqlite>=3.1,<4"]
experimental = ["deepagents>=0.6,<1"]
server = ["langgraph-cli[inmem]>=0.4.31,<1"]
all = [
"deepagents>=0.6,<1",
"langchain-openai>=1.4,<2",
"langgraph-cli[inmem]>=0.4.31,<1",
"langgraph-checkpoint-sqlite>=3.1,<4",
"langsmith>=0.10,<1",
]
[dependency-groups]
dev = [
"jsonschema>=4.26,<5",
"mypy>=1.19,<2",
"pytest>=9,<10",
"pytest-cov>=7,<8",
"ruff>=0.15,<1",
"types-pyyaml>=6.0.12,<7",
]
[project.scripts]
agent-lab = "agent_lab.cli:main"
[project.urls]
Homepage = "https://estelledc.github.io/langchain-langgraph-langsmith-tutorial/"
Repository = "https://github.com/estelledc/langchain-langgraph-langsmith-tutorial"
Issues = "https://github.com/estelledc/langchain-langgraph-langsmith-tutorial/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/agent_lab"]
[tool.uv]
default-groups = ["dev"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["B", "E", "F", "I", "PERF", "RUF", "SIM", "UP"]
ignore = ["E501", "PERF401", "RUF001"]
[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = ["S101"]
[tool.mypy]
python_version = "3.11"
strict = true
warn_unreachable = true
pretty = true
packages = ["agent_lab"]
[[tool.mypy.overrides]]
module = ["yaml"]
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts = "-ra --strict-config --strict-markers"
testpaths = ["tests"]
markers = [
"live: requires an external provider or service",
]
[tool.coverage.run]
branch = true
source = ["agent_lab"]
omit = [
"src/agent_lab/adapters/*",
"src/agent_lab/deployment.py",
"src/agent_lab/runtimes/langchain_agent.py",
]
[tool.coverage.report]
show_missing = true
skip_covered = true
fail_under = 85