summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 1a40d4c436400df1b4422d9ca74ab2dbef40300a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages

setup(
    name = "askbot",
    version = "0.6.0",
    packages = find_packages(),
    author = 'Evgeny.Fadeev',
    author_email = 'evgeny.fadeev@gmail.com',
    license = 'GPLv3',
    keywords = 'forum, community, wiki, Q&A',
    url = 'http://askbot.org',
    include_package_data = True,
    install_requires = [
        'django==1.1.2',
        'django-debug-toolbar==0.7.0',
        'South',
        'recaptcha-client',
        'markdown2',
        'html5lib',
        'python-openid',
        'django-keyedcache',
        'mysql-python',
    ],
    long_description = """Open Source Question and Answer forum.
    Based on CNPROG project by Mike Chen and Sailing Cai, project
    is inspired by StackOverflow.
    """,
)