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