__init__.py 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # -*- coding: utf-8 -*-
  2. """Distributed Task Queue"""
  3. # :copyright: (c) 2009 - 2012 by Ask Solem.
  4. # :license: BSD, see LICENSE for more details.
  5. from __future__ import absolute_import
  6. <<<<<<< HEAD
  7. VERSION = (2, 6, 0, "a1")
  8. =======
  9. VERSION = (2, 5, 2)
  10. >>>>>>> 2.5
  11. __version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:])
  12. __author__ = "Ask Solem"
  13. __contact__ = "ask@celeryproject.org"
  14. __homepage__ = "http://celeryproject.org"
  15. __docformat__ = "restructuredtext"
  16. # -eof meta-
  17. # Lazy loading
  18. from .__compat__ import recreate_module
  19. old_module, new_module = recreate_module(__name__,
  20. by_module={
  21. "celery.app": ["Celery", "bugreport"],
  22. "celery.app.state": ["current_app", "current_task"],
  23. "celery.task.sets": ["chain", "group", "subtask"],
  24. "celery.task.chords": ["chord"],
  25. },
  26. direct={"task": "celery.task"},
  27. __package__="celery",
  28. __file__=__file__,
  29. __path__=__path__,
  30. __doc__=__doc__,
  31. __version__=__version__,
  32. __author__=__author__,
  33. __contact__=__contact__,
  34. __homepage__=__homepage__,
  35. __docformat__=__docformat__,
  36. VERSION=VERSION,
  37. )