Skip to content

Commit d7c9590

Browse files
committed
Refactor descriptions in Dockerfile and pyproject.toml to use "bindings" terminology; update module docstring for consistency
1 parent 0af5a9d commit d7c9590

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

bindings/python/Dockerfile.build

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ WORKDIR /build
4242
RUN mkdir -p /build/jars
4343
COPY --from=java-builder /home/arcadedb/lib /build/jars/
4444

45-
# Copy Python binding source
45+
# Copy Python bindings source
4646
COPY bindings/python/src ./src
4747
COPY bindings/python/tests ./tests
4848
COPY 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 && \

bindings/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ build-backend = "setuptools.build_meta"
1010
[project]
1111
name = "arcadedb-embedded"
1212
version = "0.0.0"
13-
description = "ArcadeDB embedded Python driver"
13+
description = "ArcadeDB embedded Python bindings"
1414
readme = "README.md"
1515
requires-python = ">=3.8"
1616
license = {text = "Apache-2.0"}

bindings/python/src/arcadedb_embedded/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
2-
ArcadeDB Python Embedded Driver
2+
ArcadeDB Python Embedded Bindings
33
4-
A native Python driver for ArcadeDB that embeds the Java database engine
4+
A native Python bindings for ArcadeDB that embeds the Java database engine
55
directly in the Python process using JPype.
66
"""
77

0 commit comments

Comments
 (0)