Skip to content

Commit 7588e73

Browse files
Merge pull request #98 from stealthrocket/rename
rename from dispatch-sdk-python to dispatch-py
2 parents a5aeeb3 + 9dca0ce commit 7588e73

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

.github/workflows/pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
runs-on: ubuntu-latest
8989
environment:
9090
name: pypi
91-
url: https://pypi.org/p/dispatch-functions
91+
url: https://pypi.org/p/dispatch-py
9292
permissions:
9393
contents: read
9494
id-token: write

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22
<img src="https://github.com/stealthrocket/dispatch-proto/assets/865510/87162355-e184-4058-a733-650eee53f333" width="160"/>
33
</p>
44

5-
# Dispatch SDK for Python
5+
# dispatch-py
66

7-
[![Docs](https://github.com/stealthrocket/dispatch-sdk-python/actions/workflows/docs.yml/badge.svg?branch=)](https://github.com/stealthrocket/dispatch-sdk-python/actions/workflows/docs.yml)
8-
[![PyPI](https://github.com/stealthrocket/dispatch-sdk-python/actions/workflows/pypi.yml/badge.svg?branch=)](https://github.com/stealthrocket/dispatch-sdk-python/actions/workflows/pypi.yml)
9-
[![Test](https://github.com/stealthrocket/dispatch-sdk-python/actions/workflows/test.yml/badge.svg?branch=)](https://github.com/stealthrocket/dispatch-sdk-python/actions/workflows/test.yml)
10-
[![PyPI version](https://badge.fury.io/py/dispatch-functions.svg)](https://badge.fury.io/py/dispatch-functions)
7+
[![Docs](https://github.com/stealthrocket/dispatch-py/actions/workflows/docs.yml/badge.svg?branch=)](https://github.com/stealthrocket/dispatch-py/actions/workflows/docs.yml)
8+
[![PyPI](https://github.com/stealthrocket/dispatch-py/actions/workflows/pypi.yml/badge.svg?branch=)](https://github.com/stealthrocket/dispatch-py/actions/workflows/pypi.yml)
9+
[![Test](https://github.com/stealthrocket/dispatch-py/actions/workflows/test.yml/badge.svg?branch=)](https://github.com/stealthrocket/dispatch-py/actions/workflows/test.yml)
10+
[![PyPI version](https://badge.fury.io/py/dispatch-py.svg)](https://badge.fury.io/py/dispatch-py)
1111
[![Reference](https://img.shields.io/badge/API-Reference-lightblue.svg)](https://python.stealthrocket.cloud/main/reference/dispatch/)
1212

13-
This package implements the Dispatch SDK for Python.
13+
Python package to develop applications with the Dispatch platform.
1414

1515
[fastapi]: https://fastapi.tiangolo.com/tutorial/first-steps/
1616
[ngrok]: https://ngrok.com/
17-
[pypi]: https://pypi.org/project/dispatch-functions/
17+
[pypi]: https://pypi.org/project/dispatch-py/
1818
[signup]: https://docs.stealthrocket.cloud/stateful-functions/getting-started
1919

2020
- [What is Dispatch?](#what-is-dispatch)
@@ -39,9 +39,9 @@ To get started, follow the instructions to [sign up for Dispatch][signup] 🚀.
3939

4040
## Installation
4141

42-
This package is published on [PyPI][pypi] as **dispatch-functions**, to install:
42+
This package is published on [PyPI][pypi] as **dispatch-py**, to install:
4343
```sh
44-
pip install dispatch-functions
44+
pip install dispatch-py
4545
```
4646

4747
## Usage

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
This is the API reference for the Python SDK of Dispatch.
44

55
- Tutorials and guides: [docs.stealthrocket.cloud][docs].
6-
- Source: [stealthrocket/dispatch-sdk-python][github].
6+
- Source: [stealthrocket/dispatch-py][github].
77

88

99
[docs]: https://docs.stealthrocket.cloud
10-
[github]: https://github.com/stealthrocket/dispatch-sdk-python
10+
[github]: https://github.com/stealthrocket/dispatch-py

examples/getting_started/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
2929
## Install dependencies
3030
31-
pip install dispatch-functions[fastapi] requests uvicorn[standard]
31+
pip install dispatch-py[fastapi] requests uvicorn[standard]
3232
3333
# Launch the example
3434

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ requires = ["setuptools >= 61.0", "wheel", "setuptools-git-versioning<2"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
6-
name = "dispatch-functions"
7-
description = "Python SDK for Dispatch Stateful Functions"
6+
name = "dispatch-py"
7+
description = "Develop reliable distributed systems on the Dispatch platform."
88
readme = "README.md"
99
dynamic = ["version"]
1010
requires-python = ">= 3.11"

0 commit comments

Comments
 (0)