- 新增 task_report 任务级聚合指标 task_metrics - 补充创建任务幂等与失败路径/冲突测试 - 将后端测试基线提升到 20 passed - 新增 edge-agent 初始化代码、启动脚本与打包脚本 - 新增 http_health_check、check_port、check_process、grep_log 执行器 - 补充 edge-agent 基础测试并提升基线到 10 passed - 同步更新 backend README 与当前进度总结
18 lines
353 B
TOML
18 lines
353 B
TOML
[project]
|
|
name = "smart-deploy-agent-demo-edge"
|
|
version = "0.1.0"
|
|
description = "Smart deploy agent demo edge agent"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"httpx>=0.28.0,<1.0.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0.0,<9.0.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|