From: Michael Fladischer <FladischerMichael@fladi.at>
Date: Thu, 25 Apr 2019 20:33:40 +0200
Subject: Exclude test_app migrations package from installation.

---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index f06210d..9ef4f31 100644
--- a/setup.py
+++ b/setup.py
@@ -9,7 +9,7 @@ setup(
     author_email='me@jamessocol.com',
     url='http://github.com/django-waffle/django-waffle',
     license='BSD',
-    packages=find_packages(exclude=['test_app', 'test_settings']),
+    packages=find_packages(exclude=['test_app', 'test_app.*', 'test_settings']),
     include_package_data=True,
     package_data={'': ['README.rst']},
     zip_safe=False,
