- Context_Engineering.md: 에이전트 컨텍스트 엔지니어링 개념 정리 문서 추가 - Context_Engineering_Research.ipynb: 연구 노트북 업데이트 - deepagents_sourcecode/: docstring과 주석을 한국어로 번역
74 lines
1.6 KiB
TOML
74 lines
1.6 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"
|
|
|
|
[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"]
|
|
ignore_missing_imports = true
|