__init__.py 241 B

1234567
  1. """Distributed Task Queue for Django"""
  2. VERSION = (0, 1, 1)
  3. __version__ = ".".join(map(str, VERSION))
  4. __author__ = "Ask Solem"
  5. __contact__ = "askh@opera.com"
  6. __homepage__ = "http://github.com/ask/crunchy/"
  7. __docformat__ = "restructuredtext"