Files
myagents/pyproject.toml
T
Zhengshou Lai f14c39d7c0 feat(agents): 新增 mydsh 启动器 —— DeepSeek Harness CLI 包装
- launcher _BACKENDS 加 dsh:profile 透传、zstd 会话列表(session/title 或首条用户消息)、
  --resume 透传、DSH_HOME 环境变量与 expanduser
- entrypoints/cli/completion/打包/卸载全触点 + TestDsh 用例(裸跑/版本/透传/列表/缺 bin)
2026-08-17 19:54:13 +08:00

45 lines
964 B
TOML

[project]
name = "myagents"
version = "0.2.1"
description = "Myagents CLI: unified launcher for AI coding agents"
requires-python = ">=3.10"
dependencies = [
"click>=8.3.2",
"rich>=13.0.0",
]
[project.scripts]
myagents = "myagents.cli:cli"
myclaude = "myagents.entrypoints:claude_main"
mykimi = "myagents.entrypoints:kimi_main"
mycodex = "myagents.entrypoints:codex_main"
myhermes = "myagents.entrypoints:hermes_main"
mycursor = "myagents.entrypoints:cursor_main"
mydsh = "myagents.entrypoints:dsh_main"
[dependency-groups]
dev = ["pytest>=8.0"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["myagents"]
[tool.black]
line-length = 80
target-version = ["py310"]
[tool.ruff]
line-length = 80
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM", "W"]
ignore = ["E501"]