23 lines
553 B
TOML
23 lines
553 B
TOML
[project]
|
|
name = "softbus-orchestrator"
|
|
version = "1.0.0"
|
|
description = "Python orchestrator: governance HTTP, DAG, local ingress, D-Bus bridge to softbus_daemon"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"fastapi>=0.109.0",
|
|
"uvicorn[standard]>=0.27.0",
|
|
"dbus-next>=0.2.3",
|
|
]
|
|
|
|
[project.scripts]
|
|
softbus-orchestrator = "softbus_orchestrator.__main__:main"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=61"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["softbus_orchestrator*"]
|