@@ -332,8 +332,8 @@ make build
332332
333333Creates:
334334
335- - ` dist/telemetryflow_sdk -1.1.2-py3-none-any.whl `
336- - ` dist/telemetryflow_sdk -1.1.2.tar.gz `
335+ - ` dist/telemetryflow_python_sdk -1.1.2-py3-none-any.whl `
336+ - ` dist/telemetryflow_python_sdk -1.1.2.tar.gz `
337337
338338#### make clean
339339
@@ -509,18 +509,18 @@ ls -la dist/
509509
510510```
511511dist/
512- ├── telemetryflow_sdk -1.1.2-py3-none-any.whl # Wheel (binary)
513- └── telemetryflow_sdk -1.1.2.tar.gz # Source distribution
512+ ├── telemetryflow_python_sdk -1.1.2-py3-none-any.whl # Wheel (binary)
513+ └── telemetryflow_python_sdk -1.1.2.tar.gz # Source distribution
514514```
515515
516516### Installing Built Package
517517
518518``` bash
519519# Install wheel
520- pip install dist/telemetryflow_sdk -1.1.2-py3-none-any.whl
520+ pip install dist/telemetryflow_python_sdk -1.1.2-py3-none-any.whl
521521
522522# Install from source
523- pip install dist/telemetryflow_sdk -1.1.2.tar.gz
523+ pip install dist/telemetryflow_python_sdk -1.1.2.tar.gz
524524```
525525
526526## Publishing
@@ -578,7 +578,7 @@ make build
578578make publish-test
579579
580580# 6. Test installation
581- pip install --index-url https://test.pypi.org/simple/ telemetryflow-sdk
581+ pip install --index-url https://test.pypi.org/simple/ telemetryflow-python- sdk
582582
583583# 7. Publish to production PyPI
584584make publish
@@ -633,9 +633,9 @@ FROM python:3.12-slim
633633
634634WORKDIR /app
635635
636- COPY dist/telemetryflow_sdk -*.whl .
636+ COPY dist/telemetryflow_python_sdk -*.whl .
637637
638- RUN pip install --no-cache-dir telemetryflow_sdk -*.whl
638+ RUN pip install --no-cache-dir telemetryflow_python_sdk -*.whl
639639
640640# Example application
641641COPY examples/basic/main.py .
@@ -680,7 +680,7 @@ requires = ["setuptools>=61.0", "wheel"]
680680build-backend = "setuptools.build_meta"
681681
682682[project]
683- name = "telemetryflow-sdk"
683+ name = "telemetryflow-python- sdk"
684684version = "1.1.2"
685685requires-python = ">=3.12"
686686
0 commit comments