aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorRapptz <[email protected]>2016-01-04 23:26:01 -0500
committerRapptz <[email protected]>2016-01-04 23:26:01 -0500
commitcc8ddc7eae6c06279bff28e3f13b93ab6aaddc80 (patch)
tree03d5cc58499694188c15240add606c8293eb292b /setup.py
parentDocumentation improvements on using check decorator. (diff)
downloaddiscord.py-cc8ddc7eae6c06279bff28e3f13b93ab6aaddc80.tar.xz
discord.py-cc8ddc7eae6c06279bff28e3f13b93ab6aaddc80.zip
Use setuputils.find_package to find extension modules.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 4dbf7fa6..918fa012 100644
--- a/setup.py
+++ b/setup.py
@@ -1,4 +1,4 @@
-from setuptools import setup
+from setuptools import setup, find_packages
import re
requirements = []
@@ -20,7 +20,7 @@ setup(name='discord.py',
author='Rapptz',
url='https://github.com/Rapptz/discord.py',
version=version,
- packages=['discord'],
+ packages=find_packages(),
license='MIT',
description='A python wrapper for the Discord API',
long_description=readme,