diff options
| author | Rapptz <[email protected]> | 2021-04-07 05:38:01 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2021-04-07 05:39:58 -0400 |
| commit | 23fe6b46dd9c86e32d496fa8d36dc3d8f5c3eaba (patch) | |
| tree | 09622bfe3c09ab0b20f3a73cec98e8234a515689 /setup.py | |
| parent | [commands] Update Converter list in ext.commands introduction (diff) | |
| download | discord.py-23fe6b46dd9c86e32d496fa8d36dc3d8f5c3eaba.tar.xz discord.py-23fe6b46dd9c86e32d496fa8d36dc3d8f5c3eaba.zip | |
Typehint discord.Embed and introduce discord.types subpackage
The discord.types subpackage is currently only used to do type hinting
of API payloads, it's very much incomplete right now and it'll be a
rather long process.
discord.Embed was typehinted and formatted using black.
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -50,7 +50,7 @@ setup(name='discord.py', "Issue tracker": "https://github.com/Rapptz/discord.py/issues", }, version=version, - packages=['discord', 'discord.ext.commands', 'discord.ext.tasks'], + packages=['discord', 'discord.types', 'discord.ext.commands', 'discord.ext.tasks'], license='MIT', description='A Python wrapper for the Discord API', long_description=readme, |