File size: 908 Bytes
1f71c7d | 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 33 | [build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ensemble"
version = "0.1.0"
description = "ENSEMBLE — a training-free AI. Datasets become portable .exp experts (compressed < dataset). A Kuramoto brain couples experts into emergent thought. No gradient, no epoch, no GPU."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "thefinalboss" }]
keywords = ["hyperdimensional-computing", "vector-symbolic-architectures", "training-free", "kuramoto"]
dependencies = [
"numpy>=1.24",
]
[project.optional-dependencies]
dev = ["pytest>=7"]
hub = ["huggingface_hub>=0.20"]
[project.scripts]
ensemble = "ensemble.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["ensemble*", "palimseste*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-q"
|