From: Alejandro Gómez Date: Mon, 29 Jul 2013 16:10:10 +0000 (+0200) Subject: Exclude tests from installation. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=ce9a5c219dd3480a9f9fbc24969e79f2f5fc2872;p=tweepy.git Exclude tests from installation. --- 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)