forked from wvaske/vdb-bench
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 778 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 778 Bytes
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "vdbbench"
version = "0.1.0"
description = "Vector Database Benchmarking Tool"
readme = "README.md"
authors = [
{name = "Vector DB Benchmark Team"}
]
license = {text = "MIT"}
requires-python = ">=3.8"
dependencies = [
"numpy",
"pandas",
"pymilvus",
"pyyaml",
"tabulate"
]
[project.urls]
"Homepage" = "https://github.com/wvaske/vdb-bench"
"Bug Tracker" = "https://github.com/wvaske/vdb-bench/issues"
[project.scripts]
compact-and-watch = "vdbbench.compact_and_watch:main"
load-vdb = "vdbbench.load_vdb:main"
vdbbench = "vdbbench.simple_bench:main"
[tool.setuptools]
packages = {find = {}}
[tool.setuptools.package-data]
vdbbench = ["*.py"]