From c6c52649c2145ad688caae2a357c5a6e9a34c4c9 Mon Sep 17 00:00:00 2001 From: cloudwithax Date: Tue, 23 May 2023 21:19:08 -0400 Subject: [PATCH] start removing references to discord.py --- .pre-commit-config.yaml | 4 ++-- README.md | 2 +- setup.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b202571..b8f7598 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -14,7 +14,7 @@ repos: rev: 23.3.0 hooks: - id: black - language_version: python3.10 + language_version: python3.11 - repo: https://github.com/asottile/blacken-docs rev: 1.13.0 hooks: @@ -38,4 +38,4 @@ repos: - id: pycln default_language_version: - python: python3.10 + python: python3.11 diff --git a/README.md b/README.md index 57c93b1..8e057a7 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ [![Discord](https://img.shields.io/discord/899324069235810315?color=%237289DA&label=Pomice%20Support&logo=discord&logoColor=white)](https://discord.gg/r64qjTSHG8) [![Read the Docs](https://readthedocs.org/projects/pomice/badge/?version=latest)](https://pomice.readthedocs.io/en/latest/) -Pomice is a fully asynchronous Python library designed for communicating with [Lavalink](https://github.com/freyacodes/Lavalink) seamlessly within the [discord.py](https://github.com/Rapptz/discord.py) library. It features 100% coverage of the [Lavalink](https://github.com/freyacodes/Lavalink) spec that can be accessed with easy-to-understand functions along with Spotify and Apple Music querying capabilities using built-in custom clients, making it easier to develop your next big music bot. +Pomice is a fully asynchronous Python library designed for communicating with [Lavalink](https://github.com/freyacodes/Lavalink). It features 100% coverage of the [Lavalink](https://github.com/freyacodes/Lavalink) spec that can be accessed with easy-to-understand functions along with Spotify and Apple Music querying capabilities using built-in custom clients, making it easier to develop your next big music bot. ## Quick Links - [Discord Server](https://discord.gg/r64qjTSHG8) diff --git a/setup.py b/setup.py index 81fa4f5..77351f3 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ setuptools.setup( url="https://github.com/cloudwithax/pomice", packages=setuptools.find_packages(), license="GPL", - description="The modern Lavalink wrapper designed for Discord.py", + description="The modern Lavalink wrapper for Python.", long_description=readme, long_description_content_type="text/markdown", package_data={"pomice": ["py.typed"]}, @@ -69,5 +69,5 @@ setuptools.setup( "Topic :: Internet", ], python_requires=">=3.8", - keywords=["pomice", "lavalink", "discord.py"], + keywords=["pomice", "lavalink", "discord"], )