Skip to content
This repository was archived by the owner on Feb 3, 2025. It is now read-only.

Commit 0d776e6

Browse files
committed
Oops
1 parent 3a841e0 commit 0d776e6

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
discord.py>=1.5

setup.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,17 @@
1414
'README.rst'), 'w') as f2:
1515
f2.write(longdesc)
1616

17+
with open(os.path.join(os.path.dirname(__file__),
18+
'requirements.txt'), 'r') as f3:
19+
requirements = f3.read().strip().splitlines()
20+
1721
setup(
18-
name="discord-ext-status",
22+
name="discord-ext-slash",
1923
version=version,
2024
description="Support slash commands with discord.py.",
2125
long_description=longdesc,
2226
url="https://github.com/Kenny2github/discord-ext-slash",
23-
author="Ken Hilton",
27+
author="kenny2discord",
2428
author_email="[email protected]",
2529
license="MIT",
2630
classifiers=[
@@ -33,6 +37,6 @@
3337
],
3438
keywords='discord slash commands',
3539
packages=["discord.ext.slash"],
36-
install_requires=['pypresence==3.3.2'],
40+
install_requires=requirements,
3741
python_requires='>=3.7',
3842
)

0 commit comments

Comments
 (0)