From cb09dd64924628e0646342538d2512439b7c3eba Mon Sep 17 00:00:00 2001 From: Evgeny Fadeev Date: Sat, 11 Sep 2010 19:35:00 -0400 Subject: finished merge with Omat's change and added setting to enable/disable slugs --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'setup.py') diff --git a/setup.py b/setup.py index be0d4268..e17543f5 100644 --- a/setup.py +++ b/setup.py @@ -7,6 +7,7 @@ import sys #you might want to install django-debug-toolbar as well install_requires = [ + 'django==1.1.2', 'South>=0.7.1', 'recaptcha-client', 'markdown2', @@ -19,6 +20,10 @@ install_requires = [ import askbot +WIN_PLATFORMS = ('win32', 'cygwin',) +if sys.platform not in WIN_PLATFORMS: + install_requires.append('mysql-python') + setup( name = "askbot", version = askbot.get_version(), -- cgit v1.2.3-1-g7c22