From 94ff3960c77bff5c881e8b97569c17b781199f54 Mon Sep 17 00:00:00 2001 From: Luke Date: Mon, 11 Nov 2019 12:50:42 +0000 Subject: [PATCH] Exclude tests and examples from setup packages. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4978681..ae63bf0 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(exclude=["examples", "tests"]), license='MIT', description='A Python library for Discord', long_description=readme,