We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edf36d0 commit 5bf2ba2Copy full SHA for 5bf2ba2
setup.py
@@ -14,8 +14,8 @@
14
with open("README.md", "r", encoding="utf-8") as f:
15
README = f.read()
16
17
-with open("requirements.txt", "r", encoding="utf-8") as f:
18
- requirements = f.read()
+# with open("requirements.txt", "r", encoding="utf-8") as f:
+# requirements = f.read()
19
20
with open("interactions/ext/lavalink/base.py") as fp:
21
VERSION = re.search('__version__ = "([^"]+)"', fp.read())[1]
@@ -27,7 +27,10 @@
27
author_email=AUTHOR_EMAIL,
28
description=DESCRIPTION,
29
include_package_data=True,
30
- install_requires=requirements,
+ install_requires=[
31
+ "discord-py-interactions>=4.3.0",
32
+ "lavalink~=4.0.1"
33
+ ],
34
license="GPL-3.0 License",
35
long_description=README,
36
long_description_content_type="text/markdown",
0 commit comments