Skip to content

Commit 78ffb80

Browse files
committed
removed python2.4 from setup.py and added python2.5
1 parent e0dce6d commit 78ffb80

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,20 @@
2222
'django-countries==1.0.5',
2323
'django-celery==2.2.3',
2424
'django-kombu==0.9.2',
25+
'django-follow==0.2',
2526
]
2627

2728
#todo: have a dirty version retriever that
2829
#parses it out from askbot/__init__.py but does not
2930
#import it as there are issues
30-
import askbot
3131

3232
WIN_PLATFORMS = ('win32', 'cygwin',)
3333
if sys.platform not in WIN_PLATFORMS:
3434
install_requires.append('mysql-python')
3535

3636
setup(
3737
name = "askbot",
38-
version = askbot.get_version(),#version comes from askbot/__init__.py
38+
version = '0.6.77',#remember to manually set this correctly
3939
description = 'Question and Answer forum, like StackOverflow, written in python and Django',
4040
packages = find_packages(),
4141
author = 'Evgeny.Fadeev',
@@ -63,9 +63,9 @@
6363
'Natural Language :: Serbian',
6464
'Natural Language :: Turkish',
6565
'Operating System :: OS Independent',
66-
'Programming Language :: Python :: 2.4',
6766
'Programming Language :: Python :: 2.5',
6867
'Programming Language :: Python :: 2.6',
68+
'Programming Language :: Python :: 2.7',
6969
'Programming Language :: JavaScript',
7070
'Topic :: Communications :: Usenet News',
7171
'Topic :: Communications :: Email :: Mailing List Servers',
@@ -151,7 +151,7 @@
151151
print '**************************************************************'
152152
print '* *'
153153
print '* Thanks for installing Askbot. *'
154-
print '* To start deploying type: > startforum *'
154+
print '* To start deploying type: >python startforum *'
155155
print '* Please take a look at the manual askbot/doc/INSTALL *'
156156
print '* And please do not hesitate to ask your questions at *'
157157
print '* at http://askbot.org *'

0 commit comments

Comments
 (0)