From 63da0fcee0c0a287f558c404056abcc64cd45eb0 Mon Sep 17 00:00:00 2001 From: bwhmather Date: Wed, 29 Mar 2017 12:07:53 +0100 Subject: [PATCH] Don't include test module when installing --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 52148ac3f..a8e9c4d43 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def getRequires(): author='Elmer Thomas, Yamil Asusta', author_email='dx@sendgrid.com', url='https://github.com/sendgrid/sendgrid-python/', - packages=find_packages(exclude=["temp*.py"]), + packages=find_packages(exclude=["temp*.py", "test"]), include_package_data=True, license='MIT', description='SendGrid library for Python',