-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
47 lines (44 loc) · 1.1 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
[project]
name = "vector-bench"
description = "Benchmark vector database/extensions."
authors = [{ name = "TensorChord", email = "[email protected]" }]
dynamic = ["version"]
requires-python = ">=3.8"
readme = "README.md"
license = {text = "Apache-2.0"}
classifiers = [
"Intended Audience :: Developers",
]
dependencies = [
"msgspec~=0.18.5",
"h5py~=3.10.0",
"numpy~=1.26.3",
"tqdm~=4.66",
"httpx~=0.25",
"psycopg[binary]~=3.1",
"qdrant-client~=1.7.1",
]
[project.optional-dependencies]
dev = [
"ruff~=0.1.3",
]
[project.urls]
"Homepage" = "https://github.com/tensorchord/vectordb-benchmark"
[build-system]
requires = ["setuptools", "setuptools_scm>=7.0"]
build-backend = "setuptools.build_meta"
[project.scripts]
"vector_bench" = "vector_bench.main:main"
[tool.setuptools]
packages = ["vector_bench"]
[tool.setuptools_scm]
fallback_version = "0.0.0"
[tool.ruff]
target-version = "py38"
[tool.ruff.lint]
select = ["E", "F", "G", "B", "I", "SIM", "TID", "PL", "RUF"]
ignore = ["E501"]
[tool.ruff.lint.isort]
known-first-party = ["argstruct"]
[tool.ruff.pylint]
max-args = 7