mirror of
https://github.com/qdrant/fastembed.git
synced 2026-08-04 00:51:08 -05:00
48 lines
1.1 KiB
TOML
48 lines
1.1 KiB
TOML
[tool.poetry]
|
|
name = "fastembed"
|
|
version = "0.1.3"
|
|
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"
|
|
onnx = "^1.11"
|
|
onnxruntime = "^1.15"
|
|
tqdm = "^4.65"
|
|
requests = "^2.31"
|
|
tokenizers = "^0.15.0"
|
|
huggingface-hub = "0.19.4"
|
|
pydantic = "^2.5.3"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^7.4.2"
|
|
ruff = "^0.1.11"
|
|
isort = "^5.12.0"
|
|
black = "^23.7.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"
|
|
|
|
|
|
[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
|