-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
27 lines (24 loc) · 1.01 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
[tool.poetry]
name = "pyvectordb"
version = "0.1.7.1"
description = "Simple Wrapper for vector database in Python with minimal support for CRUD and retrieve."
authors = ["M Razif Rizqullah <razifrizqullah@gmail.com>"]
repository = "https://github.com/rizquuula/pyvectordb"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
pgvector = {version = "^0.3.5", optional = true}
sqlalchemy = {version = "^2.0.36", optional = true}
qdrant-client = {version = "^1.12.0", optional = true}
chromadb = {version = "0.5.20", optional = true}
psycopg2-binary = {version = "^2.9.10", optional = true}
pytest = {version = "^8.3.3", optional = true}
[tool.poetry.extras]
pgvector = ["pgvector", "sqlalchemy", "psycopg2-binary"]
qdrant = ["qdrant-client"]
chromadb = ["chromadb"]
dev = ["pgvector", "sqlalchemy", "qdrant-client", "chromadb", "psycopg2-binary", "pytest"]
all = ["pgvector", "sqlalchemy", "qdrant-client", "chromadb", "psycopg2-binary"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"