diff --git a/README.md b/README.md index 24ef0a9f..710aafc7 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ - The LiveKit icon, the name of the repository and some sample code in the background. + The LiveKit icon, the name of the repository and some sample code in the background. @@ -113,11 +113,11 @@ async def main(): ## Examples -- [Facelandmark](https://github.com/livekit/client-sdk-python/tree/main/examples/face_landmark): Use mediapipe to detect face landmarks (eyes, nose ...) -- [Whisper](https://github.com/livekit/client-sdk-python/tree/main/examples/whisper): Transcribe an audio track using OpenAI whisper -- [Basic room](https://github.com/livekit/client-sdk-python/blob/main/examples/basic_room.py): Connect to a room -- [Publish hue](https://github.com/livekit/client-sdk-python/blob/main/examples/publish_hue.py): Publish a rainbow video track -- [Publish wave](https://github.com/livekit/client-sdk-python/blob/main/examples/publish_hue.py): Publish a sine wave +- [Facelandmark](https://github.com/livekit/python-sdks/main/examples/face_landmark): Use mediapipe to detect face landmarks (eyes, nose ...) +- [Whisper](https://github.com/livekit/python-sdks/tree/main/examples/whisper): Transcribe an audio track using OpenAI whisper +- [Basic room](https://github.com/livekit/python-sdks/blob/main/examples/basic_room.py): Connect to a room +- [Publish hue](https://github.com/livekit/python-sdks/blob/main/examples/publish_hue.py): Publish a rainbow video track +- [Publish wave](https://github.com/livekit/python-sdks/blob/main/examples/publish_hue.py): Publish a sine wave ## Getting help / Contributing diff --git a/livekit-api/setup.py b/livekit-api/setup.py index c2830e45..a44bdcdc 100644 --- a/livekit-api/setup.py +++ b/livekit-api/setup.py @@ -26,10 +26,10 @@ setuptools.setup( name="livekit-api", version=about["__version__"], - description="Python Server SDK for LiveKit", + description="Python Server API for LiveKit", long_description=(here / "README.md").read_text(encoding="utf-8"), long_description_content_type="text/markdown", - url="https://github.com/livekit/client-sdk-python", + url="https://github.com/livekit/python-sdks", classifiers=[ "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", diff --git a/livekit-rtc/setup.py b/livekit-rtc/setup.py index d2c705aa..33e5d1d0 100644 --- a/livekit-rtc/setup.py +++ b/livekit-rtc/setup.py @@ -60,10 +60,10 @@ def run(self): setuptools.setup( name="livekit", version=about["__version__"], - description="Python Client SDK for LiveKit", + description="Python Real-time SDK for LiveKit", long_description=(here / "README.md").read_text(encoding="utf-8"), long_description_content_type="text/markdown", - url="https://github.com/livekit/client-sdk-python", + url="https://github.com/livekit/python-sdks", cmdclass={ "bdist_wheel": bdist_wheel, "build_py": BuildPyCommand,