]> git.rkrishnan.org Git - tahoe-lafs/zfec.git/blob - zfec/zfec/__init__.py
zfec: yet another tweak to the licence
[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.0b1-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 file
36 # COPYING for details.
37
38 # This program is distributed in the hope that it will be useful,
39 # but WITHOUT ANY WARRANTY; without even the implied warranty of
40 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
41 # GNU General Public License for more details.
42
43 # You should have received a copy of the GNU General Public License
44 # along with this program; if not, write to the Free Software
45 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.