feat(cloud-api): add workspace application entrypoint

This commit is contained in:
2026-07-12 16:41:17 +08:00
parent 47dfc3b8c5
commit 2af8909b29
8 changed files with 88 additions and 2 deletions
+24
View File
@@ -0,0 +1,24 @@
[project]
name = "device-cloud-api"
version = "0.1.0"
description = "Deployable Cloud Control Plane API for Device Agent Runtime."
requires-python = ">=3.14"
dependencies = [
"device-cloud-platform==0.1.0",
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
]
[project.scripts]
device-cloud-api = "cloud_api.cli:main"
[build-system]
requires = ["setuptools>=69"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["cloud_api*"]
[tool.uv.sources]
device-cloud-platform = { workspace = true }