__init__.py 272 B

123456789
  1. """Distributed Task Queue"""
  2. VERSION = (2, 1, 0, "a2")
  3. __version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:])
  4. __author__ = "Ask Solem"
  5. __contact__ = "ask@celeryproject.org"
  6. __homepage__ = "http://github.com/ask/celery/"
  7. __docformat__ = "restructuredtext"