From ddb36e59b96c904a09aff3ebc35259ee9522d462 Mon Sep 17 00:00:00 2001 From: Evgeny Fadeev Date: Sun, 13 Jun 2010 19:48:37 -0400 Subject: easy_install kind of works --- setup.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..1a40d4c4 --- /dev/null +++ b/setup.py @@ -0,0 +1,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. + """, +) -- cgit v1.2.3-1-g7c22