File size: 447 Bytes
b2646a7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | [build-system]
requires = ["maturin>=1.4,<2.0"]
build-backend = "maturin"
[project]
name = "htm_rust"
version = "0.1.0"
description = "Numenta BAMI-spec HTM (Spatial Pooler + Temporal Memory) in Rust with pyo3 bindings"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
]
[tool.maturin]
features = ["pyo3/extension-module"]
module-name = "htm_rust"
|