forked from zilliztech/VectorDBBench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (47 loc) · 1.6 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
[build-system]
requires = ["setuptools>=67.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
"vectordb_bench.results" = ["*.json"]
[project]
name = "vectordb-bench"
authors = [
{name="XuanYang-cn", email="xuan.yang@zilliz.com"},
]
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.23.0",
"streamlit_extras",
"grpcio==1.53.0", # for qdrant-client and pymilvus
"grpcio-tools==1.53.0", # for qdrant-client and pymilvus
"pymilvus", # with pandas, numpy, ujson
"qdrant-client",
"pinecone-client",
"weaviate-client",
"elasticsearch",
"plotly",
"pydantic==v1.10.7", # for qdrant-client
"environs",
"scikit-learn",
"s3fs",
"psutil",
]
version = "0.0.1"
[project.optional-dependencies]
test = [
"ruff",
"pytest",
]
[project.urls]
"repository" = "https://github.com/zilliztech/VectorDBBench"
[project.scripts]
init_bench = "vectordb_bench.__main__:main"