diff --git a/Makefile b/Makefile index 4088caf4..66ac0f44 100644 --- a/Makefile +++ b/Makefile @@ -17,6 +17,7 @@ wheels: pip3 wheel --no-deps --wheel-dir dist trustgraph-embeddings-hf/ pip3 wheel --no-deps --wheel-dir dist trustgraph-cli/ pip3 wheel --no-deps --wheel-dir dist trustgraph-ocr/ + pip3 wheel --no-deps --wheel-dir dist trustgraph-mcp/ packages: update-package-versions rm -rf dist/ @@ -28,6 +29,7 @@ packages: update-package-versions cd trustgraph-embeddings-hf && python3 setup.py sdist --dist-dir ../dist/ cd trustgraph-cli && python3 setup.py sdist --dist-dir ../dist/ cd trustgraph-ocr && python3 setup.py sdist --dist-dir ../dist/ + cd trustgraph-mcp && python3 setup.py sdist --dist-dir ../dist/ pypi-upload: twine upload dist/*-${VERSION}.* @@ -45,6 +47,7 @@ update-package-versions: echo __version__ = \"${VERSION}\" > trustgraph-cli/trustgraph/cli_version.py echo __version__ = \"${VERSION}\" > trustgraph-ocr/trustgraph/ocr_version.py echo __version__ = \"${VERSION}\" > trustgraph/trustgraph/trustgraph_version.py + echo __version__ = \"${VERSION}\" > trustgraph-mcp/trustgraph/mcp_version.py container: update-package-versions ${DOCKER} build -f containers/Containerfile.base \ @@ -59,12 +62,16 @@ container: update-package-versions -t ${CONTAINER_BASE}/trustgraph-hf:${VERSION} . ${DOCKER} build -f containers/Containerfile.ocr \ -t ${CONTAINER_BASE}/trustgraph-ocr:${VERSION} . + ${DOCKER} build -f containers/Containerfile.mcp \ + -t ${CONTAINER_BASE}/trustgraph-mcp:${VERSION} . some-containers: ${DOCKER} build -f containers/Containerfile.base \ -t ${CONTAINER_BASE}/trustgraph-base:${VERSION} . ${DOCKER} build -f containers/Containerfile.flow \ -t ${CONTAINER_BASE}/trustgraph-flow:${VERSION} . + ${DOCKER} build -f containers/Containerfile.mcp \ + -t ${CONTAINER_BASE}/trustgraph-mcp:${VERSION} . # ${DOCKER} build -f containers/Containerfile.vertexai \ # -t ${CONTAINER_BASE}/trustgraph-vertexai:${VERSION} . # ${DOCKER} build -f containers/Containerfile.bedrock \