Skip to content

Commit 4031d4e

Browse files
fixes
1 parent 86935c7 commit 4031d4e

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ venv/
22
__pycache__/
33
*.py[cod]
44
*$py.class
5-
superclient.egg-info
65
build/
76
dist/
87
superstream_clients.egg-info/

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ This installs the package in "editable" mode and enables automatic loading, whic
4242
## Uninstallation
4343

4444
```bash
45-
pip uninstall superclient && find venv/lib/python*/site-packages -name "superclient-init.pth" -delete && rm -rf build/ dist/ superclient.egg-info/ && find . -name "*.pyc" -delete && find . -name "__pycache__" -type d -exec rm -rf {} +
45+
pip uninstall superstream-clients && find venv/lib/python*/site-packages -name "superclient-init.pth" -delete && rm -rf build/ dist/ superstream_clients.egg-info/ && find . -name "*.pyc" -delete && find . -name "__pycache__" -type d -exec rm -rf {} +
4646
```
4747

4848
This single command:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ The Superstream library needs to modify your producer's configuration to apply o
8080
## Installation
8181

8282
```bash
83-
pip install superclient && python -m superclient install_pth
83+
pip install superstream-clients && python -m superclient install_pth
8484
```
8585

8686
That's it! Superclient will now automatically load and optimize all Kafka producers in your Python environment.
@@ -114,7 +114,7 @@ When using Superstream Clients with containerized applications, include the pack
114114
FROM python:3.8-slim
115115

116116
# Install superclient
117-
RUN pip install superclient
117+
RUN pip install superstream-clients
118118
RUN python -m superclient install_pth
119119

120120
# Your application code

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "superstream-clients"
7-
version = "0.1.3"
7+
version = "0.1.4"
88
description = "Superstream optimisation library for Kafka producers"
99
authors = [{name = "Superstream Labs", email = "[email protected]"}]
1010
license = "Apache-2.0"

superclient/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from importlib.metadata import PackageNotFoundError, version as _pkg_version
22

33
try:
4-
__version__ = _pkg_version("superclient")
4+
__version__ = _pkg_version("superstream-clients")
55
except PackageNotFoundError:
66
# Fallback for when the package isn't installed (e.g. running from source without editable install)
77
__version__ = "0.0.0"

0 commit comments

Comments
 (0)