|
@@ -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,
|