26 lines
838 B
Makefile
26 lines
838 B
Makefile
PORTNAME= langchain
|
|
DISTVERSION= 1.2.6
|
|
CATEGORIES= misc python # machine-learning
|
|
MASTER_SITES= PYPI
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= LangChain: Building applications with LLMs through composability
|
|
WWW= https://python.langchain.com/docs/introduction/ \
|
|
https://github.com/langchain-ai/langchain
|
|
|
|
LICENSE= MIT
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hatchling>0:devel/py-hatchling@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR}
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}langchain-core>=1.2.7:misc/py-langchain-core@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}langgraph>=1.0.2:misc/py-langgraph@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}pydantic2>=2.7.4:devel/py-pydantic2@${PY_FLAVOR}
|
|
|
|
USES= python
|
|
USE_PYTHON= pep517 autoplist pytest
|
|
|
|
NO_ARCH= yes
|
|
|
|
.include <bsd.port.mk>
|