-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
83 lines (73 loc) · 2.15 KB
/
pyproject.toml
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["setuptools>=67.0", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
"vectordb_bench.results" = ["*.json"]
[tool.setuptools.packages.find]
where = ["."]
include = ["vectordb_bench"]
[project]
name = "vectordb-bench"
authors = [
{name="XuanYang-cn", email="[email protected]"},
]
description = "VectorDBBench is not just an offering of benchmark results for mainstream vector databases and cloud services, it's your go-to tool for the ultimate performance and cost-effectiveness comparison. Designed with ease-of-use in mind, VectorDBBench is devised to help users, even non-professionals, reproduce results or test new systems, making the hunt for the optimal choice amongst a plethora of cloud services and open-source vector databases a breeze."
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pytz",
"streamlit-autorefresh",
"streamlit==1.31.1",
"streamlit_extras",
"tqdm",
"s3fs",
"oss2",
"psutil",
"polars",
"plotly",
"environs",
"pydantic<v2",
"scikit-learn",
"pymilvus", # with pandas, numpy, ujson
"pgvector",
"singlestoredb",
"sqlalchemy",
"chromadb",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"ruff",
"pytest",
]
all = [
"grpcio==1.53.0", # for qdrant-client and pymilvus
"grpcio-tools==1.53.0", # for qdrant-client and pymilvus
"qdrant-client",
"pinecone-client==2.2.4",
"weaviate-client",
"elasticsearch",
"pgvector",
"sqlalchemy",
"redis",
"chromadb",
"psycopg2",
]
qdrant = [ "qdrant-client" ]
pinecone = [ "pinecone-client==2.2.4" ]
weaviate = [ "weaviate-client" ]
elastic = [ "elasticsearch" ]
pgvector = [ "pgvector", "psycopg2" ]
pgvecto_rs = [ "psycopg2" ]
redis = [ "redis" ]
chromadb = [ "chromadb" ]
[project.urls]
"repository" = "https://github.com/zilliztech/VectorDBBench"
[project.scripts]
init_bench = "vectordb_bench.__main__:main"
[tool.setuptools_scm]