-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 846 Bytes
/
pyproject.toml
File metadata and controls
44 lines (37 loc) · 846 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
38
39
40
41
42
[project]
name = "deepcritical"
version = "0.1.0"
description = "Hydra-configured, Pydantic Graph-based deep research workflow"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "DeepCritical", email = "[email protected]" }
]
dependencies = [
"beautifulsoup4>=4.14.2",
"hydra-core>=1.3.2",
"pydantic>=2.7",
"pydantic-ai>=0.0.16",
"pydantic-graph>=0.2.0",
"testcontainers>=4.8.0",
]
[project.optional-dependencies]
dev = [
"ruff>=0.6.0",
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
]
[project.scripts]
deepresearch = "DeepResearch.app:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["DeepResearch"]
[tool.uv]
dev-dependencies = [
"ruff>=0.6.0",
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
]