From 879e9f615936bcb8da06435db9000b724007060e Mon Sep 17 00:00:00 2001 From: Florian Apolloner Date: Tue, 12 Mar 2013 19:34:15 +0100 Subject: [PATCH] Don't include the tests in the installation (only in the source tarball). --- MANIFEST.in | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index e70c1a58c..8927a617c 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -6,4 +6,4 @@ include runshell.py include runtests.py recursive-include docs * recursive-include requirements * -recursive-include test_django_filters/templates/test_django_filters * +recursive-include test_django_filters * diff --git a/setup.py b/setup.py index 6eed32d24..96a430c3f 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ author='Alex Gaynor', author_email='alex.gaynor@gmail.com', url='http://github.com/alex/django-filter/tree/master', - packages=find_packages(), + packages=find_packages(exclude=['test_django_filters']), classifiers=[ 'Development Status :: 3 - Alpha', 'Environment :: Web Environment',