From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Wed, 11 Apr 2007 17:49:33 +0000 (-0700)
Subject: give it a version number -- v0.9
X-Git-Tag: tahoe_v0.1.0-0-UNSTABLE~132
X-Git-Url: https://git.rkrishnan.org/%5B/frontends/%22news.html/%22doc.html/cyclelanguage?a=commitdiff_plain;h=3a2056a16fb9c6593f4bbfdf98283eef63c1b76a;p=tahoe-lafs%2Ftahoe-lafs.git

give it a version number -- v0.9
I intend to bump it to 1.0 after adding the cmdline tools.
---

diff --git a/pyfec/fec/__init__.py b/pyfec/fec/__init__.py
index d107d31d..e4b02f17 100644
--- a/pyfec/fec/__init__.py
+++ b/pyfec/fec/__init__.py
@@ -1,3 +1,21 @@
+"""
+pyfec -- fast forward error correction library with Python interface
+
+maintainer web site: U{http://zooko.com/}
+
+pyfec web site: U{http://www.allmydata.com/source/pyfec}
+"""
+
+from util.version import Version
+
+# For an explanation of what the parts of the version string mean,
+# please see pyutil.version.
+__version__ = Version("0.9.0-0-STABLE")
+
+# Please put a URL or other note here which shows where to get the branch of
+# development from which this version grew.
+__sources__ = ["http://www.allmydata.com/source/pyfec",]
+
 from _fec import Encoder, Decoder, Error
 import filefec