/usr/share/pyshared/celery/contrib/bundles.py is in python-celery 2.5.3-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | from __future__ import absolute_import
from celery import VERSION
from bundle.extensions import Dist
defaults = {"author": "Celery Project",
"author_email": "bundles@celeryproject.org",
"url": "http://celeryproject.org",
"license": "BSD"}
celery = Dist("celery", VERSION, **defaults)
django_celery = Dist("django-celery", VERSION, **defaults)
flask_celery = Dist("Flask-Celery", VERSION, **defaults)
bundles = [
celery.Bundle("celery-with-redis",
"Bundle installing the dependencies for Celery and Redis",
requires=["redis>=2.4.4"]),
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 installing the dependencies for Django-Celery and Redis",
requires=["redis>=2.4.4"]),
django_celery.Bundle("django-celery-with-mongodb",
"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,
"django", "setproctitle", "celerymon",
"cyme", "kombu-sqlalchemy", "django-kombu"]),
]
|