aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorRapptz <[email protected]>2021-04-25 04:57:29 -0400
committerRapptz <[email protected]>2021-05-27 00:53:13 -0400
commit98570793e4af8dcfca25621e86fecd85297b0d59 (patch)
treeefcbe97935fa61126c642f00fdd3ebbc15b61375 /setup.py
parentFix bug in Embed.__len__ caused by footer without text (diff)
downloaddiscord.py-98570793e4af8dcfca25621e86fecd85297b0d59.tar.xz
discord.py-98570793e4af8dcfca25621e86fecd85297b0d59.zip
Add initial support for buttons and components
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 06016e63..cee70b98 100644
--- a/setup.py
+++ b/setup.py
@@ -42,6 +42,15 @@ extras_require = {
]
}
+packages = [
+ 'discord',
+ 'discord.types',
+ 'discord.ui',
+ 'discord.webhook',
+ 'discord.ext.commands',
+ 'discord.ext.tasks',
+]
+
setup(name='discord.py',
author='Rapptz',
url='https://github.com/Rapptz/discord.py',
@@ -50,7 +59,7 @@ setup(name='discord.py',
"Issue tracker": "https://github.com/Rapptz/discord.py/issues",
},
version=version,
- packages=['discord', 'discord.types', 'discord.webhook', 'discord.ext.commands', 'discord.ext.tasks'],
+ packages=packages,
license='MIT',
description='A Python wrapper for the Discord API',
long_description=readme,