File size: 696 Bytes
2c151df | 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 | [build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "geomretrieval"
version = "0.2.0"
description = "CPU-first sparse geometric retrieval for top-10 RAG with fuzzy routing, signed residuals, and branch-aware chunk selection."
readme = "README.md"
requires-python = ">=3.10"
authors = [{name = "Research package"}]
dependencies = [
"numpy>=1.26",
"scipy>=1.11",
"scikit-learn>=1.4",
"joblib>=1.3"
]
[project.optional-dependencies]
ann = ["faiss-cpu>=1.8", "hnswlib>=0.8"]
dev = ["pytest>=8"]
[project.scripts]
geomretrieval = "geomretrieval.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["geomretrieval*"]
|