aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRapptz <[email protected]>2017-02-14 21:35:52 -0500
committerRapptz <[email protected]>2017-02-14 21:35:52 -0500
commitbb8f5f4725104d55b1270dedab29e45fca8e3932 (patch)
treed6419c9c4eced5cea814366a0ad2c0e0889a089a
parentEnsure after is called inside the daemon thread for players. (diff)
downloaddiscord.py-bb8f5f4725104d55b1270dedab29e45fca8e3932.tar.xz
discord.py-bb8f5f4725104d55b1270dedab29e45fca8e3932.zip
Make discord.ext a namespace package.
-rw-r--r--discord/ext/__init__.py12
-rw-r--r--setup.py3
2 files changed, 2 insertions, 13 deletions
diff --git a/discord/ext/__init__.py b/discord/ext/__init__.py
deleted file mode 100644
index 73194d95..00000000
--- a/discord/ext/__init__.py
+++ /dev/null
@@ -1,12 +0,0 @@
-# -*- coding: utf-8 -*-
-
-"""
-discord.py extensions
-~~~~~~~~~~~~~~~~~~~~~~
-
-Extensions for the discord.py library live in this namespace.
-
-:copyright: (c) 2017 Rapptz
-:license: MIT, see LICENSE for more details.
-
-"""
diff --git a/setup.py b/setup.py
index 212c1269..15b7769f 100644
--- a/setup.py
+++ b/setup.py
@@ -29,7 +29,7 @@ setup(name='discord.py',
author='Rapptz',
url='https://github.com/Rapptz/discord.py',
version=version,
- packages=find_packages(),
+ packages=['discord', 'discord.ext.commands'],
license='MIT',
description='A python wrapper for the Discord API',
long_description=readme,
@@ -44,6 +44,7 @@ setup(name='discord.py',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
+ 'Programming Language :: Python :: 3.6',
'Topic :: Internet',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',