Browse Source

Adds beanstalk and couchdb bundles

Ask Solem 13 years ago
parent
commit
fba6322155
1 changed files with 17 additions and 3 deletions
  1. 17 3
      celery/contrib/bundles.py

+ 17 - 3
celery/contrib/bundles.py

@@ -19,12 +19,26 @@ bundles = [
     celery.Bundle("celery-with-mongodb",
         "Bundle installing the dependencies for Celery and MongoDB",
         requires=["pymongo"]),
+    celery.Bundle("celery-with-couchdb",
+        "Bundle installing the dependencies for Celery and CouchDB",
+        requires=["couchdb"]),
+    celery.Bundle("celery-with-beanstalk",
+        "Bundle installing the dependencies for Celery and Beanstalk",
+        requires=["beanstalkc"]),
+
     django_celery.Bundle("django-celery-with-redis",
-        "Bundle that installs the dependencies for Django-Celery and Redis",
+        "Bundle installing the dependencies for Django-Celery and Redis",
         requires=["redis>=2.4.4"]),
     django_celery.Bundle("django-celery-with-mongodb",
-        "Bundle that installs the dependencies for Django-Celery and MongoDB",
-        requires=["redis>=2.4.4"]),
+        "Bundle installing the dependencies for Django-Celery and MongoDB",
+        requires=["pymongo"]),
+    django_celery.Bundle("django-celery-with-couchdb",
+        "Bundle installing the dependencies for Django-Celery and CouchDB",
+        requires=["couchdb"]),
+    django_celery.Bundle("django-celery-with-beanstalk",
+        "Bundle installing the dependencies for Django-Celery and Beanstalk",
+        requires=["beanstalkc"]),
+
     celery.Bundle("bundle-celery",
         "Bundle that installs Celery related modules",
         requires=[django_celery, flask_celery,