|
22 | 22 | 'django-countries==1.0.5',
|
23 | 23 | 'django-celery==2.2.3',
|
24 | 24 | 'django-kombu==0.9.2',
|
| 25 | + 'django-follow==0.2', |
25 | 26 | ]
|
26 | 27 |
|
27 | 28 | #todo: have a dirty version retriever that
|
28 | 29 | #parses it out from askbot/__init__.py but does not
|
29 | 30 | #import it as there are issues
|
30 |
| -import askbot |
31 | 31 |
|
32 | 32 | WIN_PLATFORMS = ('win32', 'cygwin',)
|
33 | 33 | if sys.platform not in WIN_PLATFORMS:
|
34 | 34 | install_requires.append('mysql-python')
|
35 | 35 |
|
36 | 36 | setup(
|
37 | 37 | name = "askbot",
|
38 |
| - version = askbot.get_version(),#version comes from askbot/__init__.py |
| 38 | + version = '0.6.77',#remember to manually set this correctly |
39 | 39 | description = 'Question and Answer forum, like StackOverflow, written in python and Django',
|
40 | 40 | packages = find_packages(),
|
41 | 41 | author = 'Evgeny.Fadeev',
|
|
63 | 63 | 'Natural Language :: Serbian',
|
64 | 64 | 'Natural Language :: Turkish',
|
65 | 65 | 'Operating System :: OS Independent',
|
66 |
| - 'Programming Language :: Python :: 2.4', |
67 | 66 | 'Programming Language :: Python :: 2.5',
|
68 | 67 | 'Programming Language :: Python :: 2.6',
|
| 68 | + 'Programming Language :: Python :: 2.7', |
69 | 69 | 'Programming Language :: JavaScript',
|
70 | 70 | 'Topic :: Communications :: Usenet News',
|
71 | 71 | 'Topic :: Communications :: Email :: Mailing List Servers',
|
|
151 | 151 | print '**************************************************************'
|
152 | 152 | print '* *'
|
153 | 153 | print '* Thanks for installing Askbot. *'
|
154 |
| -print '* To start deploying type: > startforum *' |
| 154 | +print '* To start deploying type: >python startforum *' |
155 | 155 | print '* Please take a look at the manual askbot/doc/INSTALL *'
|
156 | 156 | print '* And please do not hesitate to ask your questions at *'
|
157 | 157 | print '* at http://askbot.org *'
|
|
0 commit comments