]> git.rkrishnan.org Git - tahoe-lafs/zfec.git/blob - zfec/zfec/__init__.py
zfec: bump version number to zfec 1.0.0a3-1-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://allmydata.com/source/zfec}
5
6 zfec web site: U{http://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.0a3-1-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://allmydata.com/source/zfec",]
18
19 from _fec import Encoder, Decoder, Error
20 import filefec
21