start removing references to discord.py

This commit is contained in:
cloudwithax 2023-05-23 21:19:08 -04:00
parent e3fe1b52b2
commit c6c52649c2
3 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -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)

View File

@ -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"],
)