소스 검색

Adds beanstalk and couchdb bundles

Ask Solem 13 년 전
부모
커밋
fba6322155
1개의 변경된 파일17개의 추가작업 그리고 3개의 파일을 삭제
  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,