Skip to content

Commit 5bf2ba2

Browse files
committed
chore: attempt to publish a new release part 1
1 parent edf36d0 commit 5bf2ba2

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

setup.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
with open("README.md", "r", encoding="utf-8") as f:
1515
README = f.read()
1616

17-
with open("requirements.txt", "r", encoding="utf-8") as f:
18-
requirements = f.read()
17+
# with open("requirements.txt", "r", encoding="utf-8") as f:
18+
# requirements = f.read()
1919

2020
with open("interactions/ext/lavalink/base.py") as fp:
2121
VERSION = re.search('__version__ = "([^"]+)"', fp.read())[1]
@@ -27,7 +27,10 @@
2727
author_email=AUTHOR_EMAIL,
2828
description=DESCRIPTION,
2929
include_package_data=True,
30-
install_requires=requirements,
30+
install_requires=[
31+
"discord-py-interactions>=4.3.0",
32+
"lavalink~=4.0.1"
33+
],
3134
license="GPL-3.0 License",
3235
long_description=README,
3336
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)