antonypamo commited on
Commit
eba44e1
·
verified ·
1 Parent(s): a55b0ce

Create pyproject.toml

Browse files
Files changed (1) hide show
  1. pyproject.toml +58 -0
pyproject.toml ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+
4
+ # ⚙️ `pyproject.toml`
5
+
6
+ This is **pip-ready**, HF-friendly, and future-proof.
7
+
8
+ ```toml
9
+ [build-system]
10
+ requires = ["setuptools>=61.0"]
11
+ build-backend = "setuptools.build_meta"
12
+
13
+ [project]
14
+ name = "savant-engine"
15
+ version = "0.1.0"
16
+ description = "Deterministic geometric stabilization SDK for embedding pipelines"
17
+ readme = "README.md"
18
+ license = { text = "MIT" }
19
+ authors = [
20
+ { name = "Antony Padilla Morales", email = "antonypamo@gmail.com" }
21
+ ]
22
+ requires-python = ">=3.9"
23
+
24
+ dependencies = [
25
+ "numpy>=1.21"
26
+ ]
27
+
28
+ classifiers = [
29
+ "Development Status :: 3 - Alpha",
30
+ "Intended Audience :: Developers",
31
+ "Intended Audience :: Science/Research",
32
+ "License :: OSI Approved :: MIT License",
33
+ "Programming Language :: Python :: 3",
34
+ "Programming Language :: Python :: 3.9",
35
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
36
+ "Topic :: Software Development :: Libraries"
37
+ ]
38
+
39
+ keywords = [
40
+ "embeddings",
41
+ "geometry",
42
+ "ai-safety",
43
+ "rrf",
44
+ "vector-search",
45
+ "numerical-stability"
46
+ ]
47
+
48
+ [project.urls]
49
+ Homepage = "https://huggingface.co/antonypamo/savant-engine"
50
+ Repository = "https://huggingface.co/antonypamo/savant-engine"
51
+ Issues = "https://huggingface.co/antonypamo/savant-engine/discussions"
52
+
53
+ [tool.setuptools]
54
+ py-modules = [
55
+ "savant_wrapper",
56
+ "geometry_audit",
57
+ "rrf_safe_similarity"
58
+ ]