]> git.rkrishnan.org Git - tahoe-lafs/zfec.git/commitdiff
give it a version number -- v0.9
authorZooko O'Whielacronx zooko@zooko.com <zooko@zooko.com>
Wed, 11 Apr 2007 17:49:33 +0000 (23:19 +0530)
committerZooko O'Whielacronx zooko@zooko.com <zooko@zooko.com>
Wed, 11 Apr 2007 17:49:33 +0000 (23:19 +0530)
I intend to bump it to 1.0 after adding the cmdline tools.

darcs-hash:5949d3f20df3ed3bbfa9cb7de49d82ae0924b611

pyfec/fec/__init__.py

index d107d31d714e7f01fedda273c4ace361be67824d..e4b02f17a973455c070d395ea612239884e29517 100644 (file)
@@ -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