File size: 873 Bytes
783c92f
 
 
 
 
 
ea3ddc9
783c92f
 
 
 
 
 
 
 
 
 
 
ea3ddc9
783c92f
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[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"]