File size: 702 Bytes
6df467f | 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 | [build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "palimseste"
version = "0.1.0"
description = "PALIMPSESTE — self-referential append-only hypervectorial memory substrate. No weights, no gradient, no GPU. Parameters reconstructed on-the-fly by associative retrieval."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "ZCodeProject" }]
dependencies = [
"numpy>=1.24",
]
[project.optional-dependencies]
dev = ["pytest>=7"]
[tool.setuptools.packages.find]
where = ["."]
include = ["palimseste*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-q"
|