-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 841 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 841 Bytes
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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tutorial-gen"
version = "0.1.0"
description = "LangGraph multi-agent system that monitors Claude Code's CHANGELOG and generates validated tutorials"
requires-python = ">=3.11"
dependencies = [
"langgraph>=1.0.7",
"langgraph-checkpoint-sqlite>=2.0.0",
"langchain-anthropic>=0.3.12",
"langchain-core>=0.3.29",
"httpx>=0.27.0",
"click>=8.1.0",
"pydantic>=2.0",
"python-dotenv>=1.0.0",
"deepagents>=0.4.4",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24.0",
"respx>=0.22.0",
]
[project.scripts]
tutgen = "tutorial_gen.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"