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