23 lines
526 B
TOML
23 lines
526 B
TOML
[project]
|
|
name = "device-cloud-platform"
|
|
version = "0.1.0"
|
|
description = "Cloud scheduling, device pooling, plugins, and SDK for Device Agent Runtime."
|
|
readme = "README.md"
|
|
requires-python = ">=3.14"
|
|
dependencies = [
|
|
"device-agent-runtime==0.1.0",
|
|
"psycopg[binary]>=3.2.0",
|
|
"sqlalchemy>=2.0.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=69"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["cloud*"]
|
|
|
|
[tool.uv.sources]
|
|
device-agent-runtime = { workspace = true }
|