-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
33 lines (28 loc) · 1.12 KB
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.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "turboquant-vectors"
version = "0.3.0"
description = "Compress and protect embeddings with TurboQuant. Zero-loss privacy via orthogonal rotation + 8x compression. No training needed."
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
authors = [{name = "back2matching"}]
keywords = ["embeddings", "vector-search", "compression", "quantization", "turboquant", "faiss", "rag", "numpy", "privacy", "embedding-privacy", "vec2text", "pinecone", "weaviate", "qdrant"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = ["numpy>=1.24.0"]
[project.optional-dependencies]
faiss = ["faiss-cpu"]
dev = ["pytest"]
[project.urls]
Homepage = "https://github.com/back2matching/turboquant-vectors"
[project.scripts]
tq-vectors = "turboquant_vectors.cli:main"
[tool.setuptools.packages.find]
include = ["turboquant_vectors*"]