|
@@ -1,4 +1,20 @@
|
|
|
"""Distributed Task Queue"""
|
|
|
-from celery.distmeta import (__version__, __author__, __contact__,
|
|
|
- __homepage__, __docformat__, VERSION,
|
|
|
- is_stable_release, version_with_meta)
|
|
|
+
|
|
|
+VERSION = (0, 9, 0)
|
|
|
+
|
|
|
+__version__ = ".".join(map(str, VERSION))
|
|
|
+__author__ = "Ask Solem"
|
|
|
+__contact__ = "askh@opera.com"
|
|
|
+__homepage__ = "http://github.com/ask/celery/"
|
|
|
+__docformat__ = "restructuredtext"
|
|
|
+
|
|
|
+
|
|
|
+def is_stable_release():
|
|
|
+ return bool(not VERSION[1] % 2)
|
|
|
+
|
|
|
+
|
|
|
+def version_with_meta():
|
|
|
+ meta = "unstable"
|
|
|
+ if is_stable_release():
|
|
|
+ meta = "stable"
|
|
|
+ return "%s (%s)" % (__version__, meta)
|