--- # ⚙️ `pyproject.toml` This is **pip-ready**, HF-friendly, and future-proof. ```toml [build-system] requires = ["setuptools>=61.0"] build-backend = "setuptools.build_meta" [project] name = "savant-engine" version = "0.1.0" description = "Deterministic geometric stabilization SDK for embedding pipelines" readme = "README.md" license = { text = "MIT" } authors = [ { name = "Antony Padilla Morales", email = "antonypamo@gmail.com" } ] requires-python = ">=3.9" dependencies = [ "numpy>=1.21" ] classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.9", "Topic :: Scientific/Engineering :: Artificial Intelligence", "Topic :: Software Development :: Libraries" ] keywords = [ "embeddings", "geometry", "ai-safety", "rrf", "vector-search", "numerical-stability" ] [project.urls] Homepage = "https://huggingface.co/antonypamo/savant-engine" Repository = "https://huggingface.co/antonypamo/savant-engine" Issues = "https://huggingface.co/antonypamo/savant-engine/discussions" [tool.setuptools] py-modules = [ "savant_wrapper", "geometry_audit", "rrf_safe_similarity" ]