-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 1.16 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
[project]
name = "zeusdb-vector-database"
version = "0.4.1"
description = "Blazing-fast vector DB with real-time similarity search and metadata filtering."
readme = "README.md"
authors = [
{ name = "ZeusDB", email = "contact@zeusdb.com" }
]
requires-python = ">=3.10"
license = "Apache-2.0"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
"numpy>=2.2.6,<3.0.0"
]
[build-system]
requires = ["maturin>=1.9.1,<2.0"]
build-backend = "maturin"
[tool.maturin]
features = ["pyo3/extension-module"]
python-source = "src"
manifest-path = "vdb-core/Cargo.toml"
module-name = "zeusdb_vector_database" # <-- matches Rust crate name
bindings = "pyo3" # <-- explicitly state to maturin that it's a PyO3 project
include = ["LICENSE", "NOTICE", "README.md", "src/**"]
[project.optional-dependencies]
dev = [
"maturin >=1.9.3",
"pytest >=8.4.0",
"psutil >=7.0.0",
]
[project.urls]
"Repository" = "https://github.com/zeusdb/zeusdb-vector-database"
"Documentation" = "https://docs.zeusdb.com/en/latest/vector_database/"
"Bug Tracker" = "https://github.com/zeusdb/zeusdb-vector-database/issues"