- research_agent/tools.py: 한글 Docstring 및 ASCII 흐름도 추가 - research_agent/researcher/depth.py: ResearchDepth enum 및 DepthConfig 추가 - research_agent/researcher/ralph_loop.py: Ralph Loop 반복 연구 패턴 구현 - research_agent/researcher/runner.py: 연구 실행기 (CLI 지원) - tests/researcher/: 91개 테스트 (실제 API 호출 포함) - scripts/run_ai_trend_research.py: AI 트렌드 연구 스크립트 + 도구 궤적 로깅
78 lines
1.8 KiB
TOML
78 lines
1.8 KiB
TOML
[project]
|
|
name = "deepagent-base-research-context-engineering"
|
|
version = "0.1.0"
|
|
description = "Base Research Context Engineering for DeepAgents"
|
|
readme = "README.md"
|
|
license = { file = "LICENSE" }
|
|
requires-python = ">=3.13"
|
|
authors = [
|
|
{ name = "Hyunjun Jeon", email = "jeonhj920@gmail.com" },
|
|
]
|
|
dependencies = [
|
|
"arxiv>=2.3.1",
|
|
"deepagents>=0.3.1",
|
|
"langchain-openai>=1.1.6",
|
|
"markdownify>=1.2.2",
|
|
"python-dotenv>=1.2.1",
|
|
"pytz>=2025.2",
|
|
"rich>=14.2.0",
|
|
"tavily-python>=0.7.17",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"docker>=7.1.0",
|
|
"ipykernel>=7.1.0",
|
|
"ipywidgets>=8.1.8",
|
|
"langgraph-cli[inmem]>=0.4.11",
|
|
"mypy>=1.19.1",
|
|
"pytest>=9.0.2",
|
|
"ruff>=0.14.10",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=73.0.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project.scripts]
|
|
deep-research = "research_agent.researcher.runner:main"
|
|
|
|
[tool.setuptools]
|
|
packages = ["research_agent"]
|
|
|
|
[tool.setuptools.package-data]
|
|
"*" = ["py.typed"]
|
|
|
|
[tool.ruff]
|
|
extend-exclude = ["*.ipynb"]
|
|
|
|
[tool.ruff.lint]
|
|
select = [
|
|
"E", # pycodestyle
|
|
"F", # pyflakes
|
|
"I", # isort
|
|
"D", # pydocstyle
|
|
"D401", # First line should be in imperative mood
|
|
"T201",
|
|
"UP",
|
|
]
|
|
ignore = ["UP006", "UP007", "UP035", "D417", "E501", "D101", "D102", "D103", "D105", "D107"]
|
|
|
|
[tool.ruff.lint.pydocstyle]
|
|
convention = "google"
|
|
|
|
[tool.ruff.lint.per-file-ignores]
|
|
"tests/*" = ["D", "UP", "T201"]
|
|
"skills/**/*.py" = ["T201"]
|
|
|
|
[tool.pytest.ini_options]
|
|
markers = [
|
|
"integration: 실제 외부 서비스(Docker, API 등)를 사용하는 통합 테스트",
|
|
]
|
|
|
|
[tool.mypy]
|
|
python_version = "3.13"
|
|
exclude = ["(.venv|deepagents_sourcecode|research_workspace|tests|skills)"]
|
|
ignore_missing_imports = true
|
|
disable_error_code = ["import-untyped"]
|