21 lines
501 B
TOML
21 lines
501 B
TOML
[project]
|
|
name = "deep-research-driver"
|
|
version = "0.1.0"
|
|
description = "Port of Claude Code deep-research harness to Codex/Antigravity CLIs"
|
|
requires-python = ">=3.11"
|
|
dependencies = ["pydantic>=2.6"]
|
|
|
|
[project.scripts]
|
|
deep-research = "deep_research.__main__:main"
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest>=8", "pytest-asyncio>=0.23"]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
testpaths = ["tests"]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|