]> git.rkrishnan.org Git - tahoe-lafs/zfec.git/blob - zfec/zfec/__init__.py
zfec: tweak licence text
[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.0b3-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://allmydata.org/source/zfec",]
18
19 from _fec import Encoder, Decoder, Error
20 import filefec, cmdline_zfec, cmdline_zunfec
21
22 # zfec -- fast forward error correction library with Python interface
23
24 # Copyright (C) 2007 Allmydata, Inc.
25 # Author: Zooko Wilcox-O'Hearn
26 # mailto:zooko@zooko.com
27
28 # This file is part of zfec.
29 #
30 # This program is free software; you can redistribute it and/or modify it
31 # under the terms of the GNU General Public License as published by the Free
32 # Software Foundation; either version 2 of the License, or (at your option)
33 # any later version, with the added permission that, if you become obligated
34 # to release a derived work under this licence (as per section 2.b), you may
35 # delay the fulfillment of this obligation for up to 12 months.  See the
36 # COPYING file for details.