20 lines
419 B
TOML
20 lines
419 B
TOML
[build-system]
|
|
requires = ["setuptools>=61", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "idea15-edgemind-verifiable-onboard"
|
|
version = "0.1.0"
|
|
description = "Verifiable onboard AI planning runtime for embedded robotics"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
dependencies = [
|
|
"numpy",
|
|
"pydantic",
|
|
"pyyaml",
|
|
"typing-extensions",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|