icarus112 commited on
Commit
b2646a7
·
verified ·
1 Parent(s): bb7b6ce

Upload overlay/htm_rust/pyproject.toml with huggingface_hub

Browse files
Files changed (1) hide show
  1. overlay/htm_rust/pyproject.toml +17 -0
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"