aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Schilling2014-09-05 17:46:39 -0400
committerTim Schilling2014-09-05 17:46:39 -0400
commit2a1458d58f2e4c30d25e52d5fd014c9115f7d846 (patch)
tree0a5edd4a576c539b7730f62119c506ac8de2e94c
parent69bf1eb127f8c1b6b7c6c2e798ccd208293c1309 (diff)
parentda7ea9d2cbec890e31d83a66ace52545691b37b8 (diff)
downloaddjango-debug-toolbar-2a1458d58f2e4c30d25e52d5fd014c9115f7d846.tar.bz2
Merge pull request #631 from maksbotan/patch-1
Truly exclude 'tests' package in setup.py
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 60b3a28..1d22986 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@ setup(
url='https://github.com/django-debug-toolbar/django-debug-toolbar',
download_url='https://pypi.python.org/pypi/django-debug-toolbar',
license='BSD',
- packages=find_packages(exclude=('tests', 'example')),
+ packages=find_packages(exclude=('tests.*', 'tests', 'example')),
install_requires=[
'django>=1.4.2',
'sqlparse',