-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (30 loc) · 1006 Bytes
/
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
[tool.poetry]
name = "vectorizedb"
version = "1.0.0"
description = "VectorizeDB is a database for vectorized data and metadata, allowing for fast similarity search and retrieval."
authors = ["JJ Ben-Joseph <[email protected]>", "Yair Benita <[email protected]>"]
license = "Apache"
readme = "README.md"
homepage = "https://github.com/aion-labs/vectorizedb"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Information Analysis",
"Development Status :: 5 - Production/Stable",
]
[tool.poetry.dependencies]
python = ">3.9"
numpy = "*"
hnswlib = "*"
lmdb = "*"
msgpack = "*"
[tool.poetry.dev-dependencies]
pytest = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"