| [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*"] |
|
|