From ce9a5c219dd3480a9f9fbc24969e79f2f5fc2872 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alejandro=20G=C3=B3mez?= Date: Mon, 29 Jul 2013 18:10:10 +0200 Subject: [PATCH] Exclude tests from installation. --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 0f99cb5..c571905 100644 --- a/setup.py +++ b/setup.py @@ -10,6 +10,6 @@ setup(name="tweepy", author="Joshua Roesslein", author_email="tweepy@googlegroups.com", url="http://github.com/tweepy/tweepy", - packages = find_packages(), - keywords= "twitter library", - zip_safe = True) + packages=find_packages(exclude='tests'), + keywords="twitter library", + zip_safe=True) -- 2.25.1