diff options
Diffstat (limited to 'databases/py-qdrant-client/Makefile')
-rw-r--r-- | databases/py-qdrant-client/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/databases/py-qdrant-client/Makefile b/databases/py-qdrant-client/Makefile new file mode 100644 index 000000000000..19307ae8b118 --- /dev/null +++ b/databases/py-qdrant-client/Makefile @@ -0,0 +1,29 @@ +PORTNAME= qdrant-client +PORTVERSION= 1.15.1 +CATEGORIES= databases python +MASTER_SITES= PYPI +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= qdrant_client-${PORTVERSION} + +MAINTAINER= otis@FreeBSD.org +COMMENT= Python client for Qdrant vector search engine +WWW= https://github.com/qdrant/qdrant-client + +LICENSE= APACHE20 + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}poetry-core>0:devel/py-poetry-core@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}grpcio>0:devel/py-grpcio@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}httpx>0:www/py-httpx@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}numpy>0:math/py-numpy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}portalocker>0:devel/py-portalocker@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}protobuf>0:devel/py-protobuf@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pydantic2>0:devel/py-pydantic2@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}urllib3>0:net/py-urllib3@${PY_FLAVOR} + + +USES= python +USE_PYTHON= autoplist concurrent pep517 + +NO_ARCH= yes + +.include <bsd.port.mk> |