28 lines
658 B
TOML
28 lines
658 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 = [
|
|
"alembic>=1.14.0",
|
|
"argon2-cffi>=25.0.0",
|
|
"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.setuptools.package-data]
|
|
cloud = ["migrations/*.ini", "migrations/*.mako"]
|
|
|
|
[tool.uv.sources]
|
|
device-agent-runtime = { workspace = true }
|