aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorAymeric Augustin2013-10-16 22:29:51 +0200
committerAymeric Augustin2013-10-17 18:24:57 +0200
commiteacf116d61f0e3f47a7c581275a18b3aec8548b1 (patch)
tree87674c6ea964f9404eb3d646c518a3ecd54cce4b /setup.py
parentc1f39b1a168d535e0b90d3c69273e391adf22637 (diff)
downloaddjango-debug-toolbar-eacf116d61f0e3f47a7c581275a18b3aec8548b1.tar.bz2
Switch to an external version of sqlparse.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index ced3b2d..066c339 100644
--- a/setup.py
+++ b/setup.py
@@ -12,8 +12,9 @@ setup(
download_url='https://github.com/django-debug-toolbar/django-debug-toolbar/downloads',
license='BSD',
packages=find_packages(exclude=('tests', 'example')),
- tests_require=[
+ install_requires=[
'django>=1.4,<1.6',
+ 'sqlparse',
],
test_suite='runtests.runtests',
include_package_data=True,