summaryrefslogtreecommitdiffstats
path: root/askbot/__init__.py
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2011-12-06 11:18:41 -0300
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2011-12-06 11:18:41 -0300
commita0ef331191fa8e1c7a7a9816f1cf35ed6b9bfe59 (patch)
tree3d4d91a5f52bb10c24ef2136db9fa5b99c9f2123 /askbot/__init__.py
parentb3f698253e1b6e0db2a21b756b04e50f40aa59e3 (diff)
downloadaskbot-a0ef331191fa8e1c7a7a9816f1cf35ed6b9bfe59.tar.gz
askbot-a0ef331191fa8e1c7a7a9816f1cf35ed6b9bfe59.tar.bz2
askbot-a0ef331191fa8e1c7a7a9816f1cf35ed6b9bfe59.zip
made dependency checking more complete and incremented revision
Diffstat (limited to 'askbot/__init__.py')
-rw-r--r--askbot/__init__.py26
1 files changed, 25 insertions, 1 deletions
diff --git a/askbot/__init__.py b/askbot/__init__.py
index 9686b5f5..99c3f596 100644
--- a/askbot/__init__.py
+++ b/askbot/__init__.py
@@ -9,7 +9,31 @@ import smtplib
import sys
import logging
-VERSION = (0, 7, 32)
+VERSION = (0, 7, 33)
+
+#keys are module names used by python imports,
+#values - the package qualifier to use for pip
+REQUIREMENTS = {
+ 'akismet': 'akismet',
+ 'django': 'django>=1.1.2',
+ 'jinja2': 'Jinja2',
+ 'coffin': 'Coffin>=0.3',
+ 'south': 'South>=0.7.1',
+ 'oauth2': 'oauth2',
+ 'markdown2': 'markdown2',
+ 'html5lib': 'html5lib',
+ 'keyedcache': 'django-keyedcache',
+ 'threaded_multihost': 'django-threaded-multihost',
+ 'robots': 'django-robots',
+ 'unidecode': 'unidecode',
+ 'django_countries': 'django-countries==1.0.5',
+ 'djcelery': 'django-celery==2.2.7',
+ 'djkombu': 'django-kombu==0.9.2',
+ 'followit': 'django-followit',
+ 'recaptcha_works': 'django-recaptcha-works',
+ 'openid': 'python-openid',
+ 'pystache': 'pystache==0.3.1',
+}
#necessary for interoperability of django and coffin
try: