From f9a96b0ec2bc2d144aeab451b8825d074f9a25b6 Mon Sep 17 00:00:00 2001 From: Evgeny Fadeev Date: Wed, 8 Sep 2010 16:26:08 -0400 Subject: removed debug toolbar from dependencies, b/c developers can enable it themselves --- setup.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 55d9a67c..ac2e78ba 100644 --- a/setup.py +++ b/setup.py @@ -3,9 +3,12 @@ ez_setup.use_setuptools() from setuptools import setup, find_packages import sys +#NOTE: if you want to develop askbot +#you might want to install django-debug-toolbar as well + install_requires = [ 'django==1.1.2', - 'django-debug-toolbar==0.7.0', + #'django-debug-toolbar==0.7.0', 'South>=0.7.1', 'recaptcha-client', 'markdown2', @@ -65,7 +68,7 @@ setup( """, ) -if sys.platform in WIN_PLATFORMS: +if WIN_PLATFORM in locals() and sys.platform in WIN_PLATFORMS: print 'ATTENTION!! please install windows binary mysql-python package' print 'at http://www.codegood.com/archives/4' -- cgit v1.2.3-1-g7c22