Description: Do not install testapp in global namespace.
  This patch delegates packaging of the `testapp` package to the
  MANIFEST.in file, avoiding installation in global namespace.
Author: Fladischer Michael <FladischerMichael@fladi.at>
Forwarded: http://github.com/jbalogh/django-nose/commit/b2e6e785ce1beec99d13221bfd0ef382f212ee14
Last-Update: 2010-06-01

Index: django-nose-0.1/setup.py
===================================================================
--- django-nose-0.1.orig/setup.py	2010-06-01 11:47:57.884917076 +0200
+++ django-nose-0.1/setup.py	2010-06-01 11:49:01.661412160 +0200
@@ -10,7 +10,7 @@
     author_email='me@jeffbalogh.org',
     url='http://github.com/jbalogh/django-nose',
     license='BSD',
-    packages=find_packages(),
+    packages=find_packages(exclude=['testapp','testapp/*']),
     include_package_data=True,
     zip_safe=False,
     install_requires=['nose'],
Index: django-nose-0.1/MANIFEST.in
===================================================================
--- django-nose-0.1.orig/MANIFEST.in	2010-06-01 11:49:10.544914966 +0200
+++ django-nose-0.1/MANIFEST.in	2010-06-01 11:49:46.052911919 +0200
@@ -1,2 +1,3 @@
 include LICENSE
 include README.rst
+recursive-include testapp *
