]> git.rkrishnan.org Git - tahoe-lafs/zfec.git/blob - zfec/zfec/__init__.py
zfec: update docs, metadata, version number to 1.0.0a2-0-STABLE
[tahoe-lafs/zfec.git] / zfec / zfec / __init__.py
1 """
2 zfec -- fast forward error correction library with Python interface
3
4 maintainer web site: U{http://zooko.com/}
5
6 zfec web site: U{http://www.allmydata.com/source/zfec}
7 """
8
9 from util.version import Version
10
11 # For an explanation of what the parts of the version string mean,
12 # please see pyutil.version.
13 __version__ = Version("1.0.0a2-0-STABLE")
14
15 # Please put a URL or other note here which shows where to get the branch of
16 # development from which this version grew.
17 __sources__ = ["http://www.allmydata.com/source/zfec",]
18
19 from _fec import Encoder, Decoder, Error
20 import filefec
21