25 lines
660 B
TOML
25 lines
660 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 = "MIT"
|
|
dependencies = [
|
|
"jsonschema>=4.0.0"
|
|
]
|
|
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__" }
|