-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (51 loc) · 1.93 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (51 loc) · 1.93 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "turboquant"
version = "0.3.0"
description = "Near-optimal vector quantization for AI — 5x compression, 95%+ recall, zero preprocessing"
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
authors = [
{name = "Firmamento Technologies", email = "info@firmamento.tech"},
{name = "Luca Di Domenico"},
]
keywords = [
"vector-quantization", "faiss", "approximate-nearest-neighbor",
"embedding-compression", "kv-cache", "llm-inference",
"turboquant", "polarquant", "similarity-search",
"information-retrieval", "machine-learning", "deep-learning",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
]
dependencies = [
"numpy>=1.24",
"scipy>=1.10",
]
[project.optional-dependencies]
dev = ["pytest>=7.0", "pytest-benchmark"]
bench = ["faiss-cpu>=1.7", "sentence-transformers>=2.0"]
all = ["faiss-cpu>=1.7", "sentence-transformers>=2.0", "pytest>=7.0"]
[project.urls]
Homepage = "https://github.com/Firmamento-Technologies/TurboQuant"
Documentation = "https://github.com/Firmamento-Technologies/TurboQuant#readme"
Repository = "https://github.com/Firmamento-Technologies/TurboQuant"
Issues = "https://github.com/Firmamento-Technologies/TurboQuant/issues"
Paper = "https://arxiv.org/abs/2504.19874"
[tool.setuptools.packages.find]
include = ["turboquant*"]
[tool.pytest.ini_options]
testpaths = ["tests"]