mirror of
https://github.com/qdrant/fastembed.git
synced 2026-08-04 00:51:08 -05:00
51 lines
1.2 KiB
TOML
51 lines
1.2 KiB
TOML
[tool.poetry]
|
|
name = "fastembed"
|
|
version = "0.0.4"
|
|
description = "Fast, light, accurate library built for retrieval embedding generation"
|
|
authors = ["NirantK <nirant.bits@gmail.com>"]
|
|
license = "Apache License"
|
|
readme = "README.md"
|
|
packages = [{include = "fastembed"}]
|
|
homepage = "https://github.com/qdrant/fastembed"
|
|
repository = "https://github.com/qdrant/fastembed"
|
|
keywords = ["vector", "embedding", "neural", "search", "qdrant", "sentence-transformers"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.8.0,<3.12"
|
|
onnxruntime = "^1.15.1"
|
|
torch = ">=2.0.0, !=2.0.1"
|
|
optimum = ">1.12.0"
|
|
tqdm = "^4.65.0"
|
|
requests = "^2.31.0"
|
|
tokenizers = "^0.13.3"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
ruff = "^0.0.277"
|
|
isort = "^5.12.0"
|
|
black = "^23.7.0"
|
|
onnx = "^1.11.0"
|
|
notebook = ">=7.0.2"
|
|
mkdocs-material = "^9.1.21"
|
|
mkdocstrings = "^0.22.0"
|
|
pillow = "^10.0.0"
|
|
cairosvg = "^2.7.1"
|
|
mknotebooks = "^0.8.0"
|
|
pytest = "^7.4.0"
|
|
|
|
[tool.poetry.dependencies.onnxruntime-silicon]
|
|
version = "^1.15.0"
|
|
markers = "sys_platform == 'darwin'" # This makes it macOS specific
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.black]
|
|
line-length = 120
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
|
|
[tool.ruff]
|
|
line-length = 120
|