forked from vstorm-co/pydantic-deepagents
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 1.12 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
[project]
name = "deepresearch"
version = "0.1.0"
description = "Autonomous research agent powered by pydantic-deep + MCP"
requires-python = ">=3.12"
dependencies = [
"pydantic-deep[web]",
"pydantic-ai[mcp]",
"pydantic-ai-middleware",
"pydantic-ai-backend[docker]",
"summarization-pydantic-ai",
"subagents-pydantic-ai",
"pydantic-ai-todo",
"python-dotenv>=1.0",
]
[project.optional-dependencies]
export = ["markdown>=3.5", "weasyprint>=60.0"]
[tool.uv.sources]
pydantic-deep = { path = "..", editable = true }
pydantic-ai-backend = { path = "../../pydantic-ai-backend", editable = true }
pydantic-ai-middleware = { path = "../../pydantic-ai-middleware", editable = true }
summarization-pydantic-ai = { path = "../../pydantic-ai-summarization", editable = true }
subagents-pydantic-ai = { path = "../../pydantic-ai-subagents", editable = true }
pydantic-ai-todo = { path = "../../pydantic-ai-todo", editable = true }
[project.scripts]
deepresearch = "deepresearch.app:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/deepresearch"]