morph-hrr / pyproject.toml
thebasedcapital's picture
morph-hrr v0.1.1: add numpy to dependencies (fixes broken import)
ea3ddc9 verified
Raw
History Blame Contribute Delete
873 Bytes
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "morph-hrr"
version = "0.1.1"
description = "Compositional HRR morpheme tokenizer/embeddings: circular-convolution prefix (x) root (x) suffix, for Apple MLX."
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [{ name = "BB Claude" }]
keywords = ["hrr", "vsa", "hyperdimensional", "tokenizer", "morphology", "mlx", "embeddings", "circular-convolution"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
]
dependencies = ["mlx", "numpy"]
[project.optional-dependencies]
test = ["pytest"]
[project.urls]
Repository = "https://huggingface.co/<user>/morph-hrr"
[tool.hatch.build.targets.wheel]
packages = ["src/morph_hrr"]
[tool.pytest.ini_options]
pythonpath = ["src"]