Skip to content

Commit 888d0a2

Browse files
committed
Change package name to coherence-client
1 parent 47a3ea8 commit 888d0a2

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ docker run -d -p 1408:1408 ghcr.io/oracle/coherence-ce:22.06.4
3636
## Installation
3737

3838
```bash
39-
python3 -m pip install coherence
39+
python3 -m pip install coherence-client
4040
```
4141

4242
## Documentation

docs/installation.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ To install the Coherence Python Client one would need to do a pip install of the
1010

1111
.. code-block:: bash
1212
13-
python3 -m pip install coherence
13+
python3 -m pip install coherence-client

examples/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All examples in this directory assume that the Coherence Python Client has
44
been installed.
55

66
```bash
7-
python3 -m pip install coherence
7+
python3 -m pip install coherence-client
88
```
99

1010
Be sure a Coherence gRPC proxy is available for the examples to work against.

pyproject.toml

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@
22
# Licensed under the Universal Permissive License v 1.0 as shown at
33
# https://oss.oracle.com/licenses/upl.
44
[tool.poetry]
5-
name = "coherence"
5+
name = "coherence-client"
66
version = "1.0b1"
77
description = """The Coherence Python Client allows Python applications to act as cache clients to a \
88
Coherence Cluster using Google's gRPC framework as the network transport."""
9+
packages = [
10+
{ include = "coherence", from = "./src"},
11+
]
912
readme = "README.md"
1013
authors = ["Oracle <[email protected]>"]
1114
homepage = "https://github.com/oracle/coherenc-py-client"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from distutils.core import setup
66

77
setup(
8-
name="coherence",
8+
name="coherence-client",
99
version="1.0b1",
1010
packages=["coherence"],
1111
url="https://github.com/oracle/coherence-py-client",

0 commit comments

Comments
 (0)