This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
bistro/setup.py

31 lines
815 B
Python

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.
""",
)