aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorDavid Cramer2011-06-14 12:38:55 -0700
committerDavid Cramer2011-06-14 12:38:55 -0700
commit4ee67a1632f41a873d997ae15ac0a2eccca04430 (patch)
tree8ee7b6fca627ae86356aa9f22002f2ada069c52b /setup.py
parentc61daab0ce10d9654ecb9ce70819233171885eae (diff)
downloaddjango-debug-toolbar-4ee67a1632f41a873d997ae15ac0a2eccca04430.tar.bz2
Move test suite into parent namespace
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 4314988..f232b86 100644
--- a/setup.py
+++ b/setup.py
@@ -11,12 +11,12 @@ setup(
url='https://github.com/django-debug-toolbar/django-debug-toolbar',
download_url='https://github.com/django-debug-toolbar/django-debug-toolbar/downloads',
license='BSD',
- packages=find_packages(exclude=['ez_setup']),
+ packages=find_packages(exclude=('ez_setup', 'tests', 'example')),
tests_require=[
'django>=1.1,<1.4',
'dingus',
],
- test_suite='debug_toolbar.runtests.runtests',
+ test_suite='runtests.runtests',
include_package_data=True,
zip_safe=False, # because we're including media that Django needs
classifiers=[