aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorRapptz <[email protected]>2021-04-07 05:38:01 -0400
committerRapptz <[email protected]>2021-04-07 05:39:58 -0400
commit23fe6b46dd9c86e32d496fa8d36dc3d8f5c3eaba (patch)
tree09622bfe3c09ab0b20f3a73cec98e8234a515689 /setup.py
parent[commands] Update Converter list in ext.commands introduction (diff)
downloaddiscord.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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 3c5f94aa..5a8b5524 100644
--- a/setup.py
+++ b/setup.py
@@ -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,