From b8b18378669f57484ab7f4bdae49f8e6c99cac23 Mon Sep 17 00:00:00 2001 From: Evgeny Fadeev Date: Wed, 27 Apr 2011 12:32:54 -0400 Subject: fixed issue with migration 22 on mysql and django >= 1.2 --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index e5ff3250..cd3e5e86 100644 --- a/setup.py +++ b/setup.py @@ -27,6 +27,7 @@ install_requires = [ #todo: have a dirty version retriever that #parses it out from askbot/__init__.py but does not #import it as there are issues +import askbot WIN_PLATFORMS = ('win32', 'cygwin',) if sys.platform not in WIN_PLATFORMS: @@ -34,7 +35,7 @@ if sys.platform not in WIN_PLATFORMS: setup( name = "askbot", - version = '0.6.80',#remember to manually set this correctly + version = askbot.get_version(),#version comes from askbot/__init__.py description = 'Question and Answer forum, like StackOverflow, written in python and Django', packages = find_packages(), author = 'Evgeny.Fadeev', @@ -150,7 +151,7 @@ if 'WIN_PLATFORM' in locals() and sys.platform in WIN_PLATFORMS: print '**************************************************************' print '* *' print '* Thanks for installing Askbot. *' -print '* To start deploying type: >python startforum *' +print '* To start deploying type: > startforum *' print '* Please take a look at the manual askbot/doc/INSTALL *' print '* And please do not hesitate to ask your questions at *' print '* at http://askbot.org *' -- cgit v1.2.3-1-g7c22