From d89562204fb584b60de1ac631e4cf32177a586c4 Mon Sep 17 00:00:00 2001 From: Luke Date: Wed, 20 Nov 2019 19:39:16 +0000 Subject: [PATCH] Stop tests and examples from being published (#167) * Exclude tests and examples from setup packages. * Update setup.py * Update setup.py * Explicitly include rather than exclude --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4978681..e80a54a 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ setup( author='b1nzy', url='https://github.com/b1naryth1ef/disco', version=VERSION, - packages=find_packages(), + packages=find_packages(include=['disco*']), license='MIT', description='A Python library for Discord', long_description=readme,