diff options
| author | Rapptz <[email protected]> | 2021-04-25 04:57:29 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2021-05-27 00:53:13 -0400 |
| commit | 98570793e4af8dcfca25621e86fecd85297b0d59 (patch) | |
| tree | efcbe97935fa61126c642f00fdd3ebbc15b61375 /setup.py | |
| parent | Fix bug in Embed.__len__ caused by footer without text (diff) | |
| download | discord.py-98570793e4af8dcfca25621e86fecd85297b0d59.tar.xz discord.py-98570793e4af8dcfca25621e86fecd85297b0d59.zip | |
Add initial support for buttons and components
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -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, |