pipeline-task/pyproject.toml
yumoqing 50a38e15e1 feat: pipeline-task 交互模块初始版本
- 纯薄交互层,无数据表,调用 pipeline-service 引擎函数
- 6个dspy API(submit/list/detail/node/modify/control)
- 4个UI页面(index/list/detail/submit)
- pipeline_task.js 交互辅助函数
- load_path.py RBAC 权限注册
- 完整 README 文档
2026-06-11 17:36:37 +08:00

17 lines
395 B
TOML

[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pipeline_task"
version = "1.0.0"
description = "产线任务交互模块 — 提交任务、查看状态、修改节点、暂停恢复"
requires-python = ">=3.8"
dependencies = [
"bricks_for_python",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["pipeline_task*"]