qdrant_demo/pyproject.toml

30 lines
1.1 KiB
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"
2022-09-25 19:12:34 +08:00
sentence-transformers = "^2.2.0"
2020-11-28 21:45:55 +08:00
psutil = "^5.7.3"
2022-09-25 19:12:34 +08:00
nltk = "^3.7"
pandas = "^1.1.5"
loguru = "^0.5.3"
2021-02-10 06:49:47 +08:00
requests = "^2.25.1"
2023-09-25 05:00:52 +08:00
qdrant-client = "^1.5.4"
torch = [
{url="https://download.pytorch.org/whl/cpu-cxx11-abi/torch-2.0.1%2Bcpu.cxx11.abi-cp311-cp311-linux_x86_64.whl", markers = "python_version == '3.11' and sys_platform == 'linux' and platform_machine == 'x86_64'"},
{url="https://download.pytorch.org/whl/cpu/torch-2.0.1-cp311-none-macosx_10_9_x86_64.whl", markers = "python_version == '3.11' and sys_platform == 'darwin' and platform_machine == 'x86_64'"},
{url="https://download.pytorch.org/whl/cpu/torch-2.0.1-cp311-none-macosx_11_0_arm64.whl", markers = "python_version == '3.11' and sys_platform == 'darwin' and platform_machine == 'arm64'"},
]
2023-09-25 05:53:40 +08:00
tqdm = "^4.66.1"
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"