22 lines
628 B
TOML
22 lines
628 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "spacesafeml_certification_benchmark_and"
|
|
version = "0.1.0"
|
|
description = "Modular framework for certification, benchmarking and governance of onboard AI in space robotics. MVP scaffold."
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
license = { text = "MIT" }
|
|
authors = [ { name = "OpenCode Collaboration" } ]
|
|
|
|
[project.urls]
|
|
Homepage = "https://example.org/spacesafeml"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = { attr = "spacesafeml_certification_benchmark_and_.__version__" }
|