qdrant_demo/pyproject.toml

23 lines
523 B
TOML
Raw Normal View History

2020-11-24 05:59:05 +08:00
[tool.poetry]
name = "qdrant_demo"
version = "0.1.0"
description = "Qdrant vector similarity engine demo"
authors = ["Andrey Vasnetsov <andrey@vasnetsov.com>"]
[tool.poetry.dependencies]
2023-09-25 05:00:52 +08:00
python = "~3.11"
fastapi = "^0.103.1"
uvicorn = "^0.18.3"
2020-11-28 21:45:55 +08:00
psutil = "^5.7.3"
pandas = "^1.1.5"
loguru = "^0.5.3"
2021-02-10 06:49:47 +08:00
requests = "^2.25.1"
2023-09-25 05:53:40 +08:00
tqdm = "^4.66.1"
2023-10-17 06:06:08 +08:00
qdrant-client = {extras = ["fastembed"], version = "^1.6.3"}
2020-11-24 05:59:05 +08:00
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"