getting ready for pomice v2

This commit is contained in:
cloudwithax 2023-01-24 13:58:51 -05:00
parent cab2f2d3a1
commit 6b513d1e67
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ Pomice
~~~~~~ ~~~~~~
The modern Lavalink wrapper designed for discord.py. The modern Lavalink wrapper designed for discord.py.
:copyright: 2021, cloudwithax :copyright: 2023, cloudwithax
:license: GPL-3.0 :license: GPL-3.0
""" """
import discord import discord
@ -18,7 +18,7 @@ if not discord.version_info.major >= 2:
"using 'pip install discord.py'" "using 'pip install discord.py'"
) )
__version__ = "1.1.8a" __version__ = "2.0a"
__title__ = "pomice" __title__ = "pomice"
__author__ = "cloudwithax" __author__ = "cloudwithax"

View File

@ -55,6 +55,6 @@ setuptools.setup(
'Topic :: Software Development :: Libraries', 'Topic :: Software Development :: Libraries',
"Topic :: Internet" "Topic :: Internet"
], ],
python_requires='>=3.8', python_requires='>=3.9',
keywords=['pomice', 'lavalink', "discord.py"], keywords=['pomice', 'lavalink', "discord.py"],
) )