Files
qdrant-client/pyproject.toml
Andrey Vasnetsov 8840f2b5bf V1.1.0 (#134)
* WIP: generate models and conversions

* update quantization param + match any condition + test

* update versions

* consistent naming

* use old grpc types generator

* fix: update type hints

* disable match-any in backward comp test

---------

Co-authored-by: George Panchuk <george.panchuk@qdrant.tech>
2023-03-17 20:06:10 +01:00

47 lines
1.2 KiB
TOML

[tool.poetry]
name = "qdrant_client"
version = "1.1.0"
description = "Client library for the Qdrant vector search engine"
authors = ["Andrey Vasnetsov <andrey@qdrant.tech>"]
packages = [
{include = "qdrant_client"},
{include = "qdrant_openapi_client"}
]
readme = "README.md"
homepage = "https://github.com/qdrant/qdrant_client"
repository = "https://github.com/qdrant/qdrant_client"
keywords = ["vector", "search", "neural", "matching", "client"]
[tool.poetry.dependencies]
python = ">=3.7,<3.12"
httpx = { version = ">=0.14.0", extras = ["http2"] }
numpy = [
{ version = "<1.21", python = "<3.8" },
{ version = ">=1.21", python = ">=3.8" }
]
pydantic = "^1.8"
typing-extensions = "^4.0.0"
grpcio = { version = ">=1.41.0", allow-prereleases = true }
grpcio-tools = ">=1.41.0"
urllib3 = "^1.26.14"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1"
grpcio-tools = "^1.46.0"
sphinx = "^4.4.0"
qdrant-sphinx-theme = { git = "https://github.com/qdrant/qdrant_sphinx_theme.git", branch = "master" }
coverage = "^6.3.3"
[tool.poetry.group.types.dependencies]
pyright = "^1.1.293"
mypy = "^1.0.0"
types-protobuf = "^4.21.0.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
typeCheckingMode = "strict"