aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorJannis Leidel2012-03-31 16:13:40 +0200
committerJannis Leidel2012-03-31 16:13:40 +0200
commit37a30194a1d5c9ebd7080954725dae38e19264fc (patch)
tree3e0fb3216f6f48e691f023d288ee0d7e5fba0989 /setup.py
parente3b28b4a5b234e6c01543d69dc207276cac31f3b (diff)
downloaddjango-debug-toolbar-37a30194a1d5c9ebd7080954725dae38e19264fc.tar.bz2
Removed unneeded ez_setup from list of excluded modules in setup.py.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index f7b4aa7..a0a8814 100644
--- a/setup.py
+++ b/setup.py
@@ -11,7 +11,7 @@ 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', 'tests', 'example')),
+ packages=find_packages(exclude=('tests', 'example')),
tests_require=[
'django>=1.1,<1.4',
'dingus',