@@ -42,7 +42,7 @@ WORKDIR /build
4242RUN mkdir -p /build/jars
4343COPY --from=java-builder /home/arcadedb/lib /build/jars/
4444
45- # Copy Python binding source
45+ # Copy Python bindings source
4646COPY bindings/python/src ./src
4747COPY bindings/python/tests ./tests
4848COPY bindings/python/setup_jars.py .
@@ -76,19 +76,19 @@ RUN export ARCADEDB_VERSION=$(python3 extract_version.py --format=pep440 /arcade
7676 case ${DISTRIBUTION} in \
7777 headless) \
7878 PACKAGE_NAME="arcadedb-embedded-headless" && \
79- DESCRIPTION="ArcadeDB embedded Python driver - Headless distribution (excludes Gremlin, GraphQL, MongoDB/Redis wire protocols, and Studio)" \
79+ DESCRIPTION="ArcadeDB embedded Python bindings - Headless distribution (excludes Gremlin, GraphQL, MongoDB/Redis wire protocols, and Studio)" \
8080 ;; \
8181 minimal) \
8282 PACKAGE_NAME="arcadedb-embedded-minimal" && \
83- DESCRIPTION="ArcadeDB embedded Python driver - Minimal distribution (excludes Gremlin, GraphQL, MongoDB/Redis wire protocols)" \
83+ DESCRIPTION="ArcadeDB embedded Python bindings - Minimal distribution (excludes Gremlin, GraphQL, MongoDB/Redis wire protocols)" \
8484 ;; \
8585 full) \
8686 PACKAGE_NAME="arcadedb-embedded" && \
87- DESCRIPTION="ArcadeDB embedded Python driver - Full distribution (includes Gremlin, GraphQL, MongoDB/Redis wire protocols, and Studio)" \
87+ DESCRIPTION="ArcadeDB embedded Python bindings - Full distribution (includes Gremlin, GraphQL, MongoDB/Redis wire protocols, and Studio)" \
8888 ;; \
8989 *) \
9090 PACKAGE_NAME="arcadedb-embedded" && \
91- DESCRIPTION="ArcadeDB embedded Python driver " \
91+ DESCRIPTION="ArcadeDB embedded Python bindings " \
9292 ;; \
9393 esac && \
9494 sed -i 's|^name = .*|name = "'"${PACKAGE_NAME}"'"|' pyproject.toml && \
0 commit comments