]> git.rkrishnan.org Git - tahoe-lafs/zfec.git/blob - zfec/zfec/__init__.py
zfec: setup: use argparse and pyutil as separate packages, not by copying their sourc...
[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 __version__ = "unknown"
10 try:
11     from _version import __version__
12 except ImportError:
13     # we're running in a tree that hasn't run darcsver.py, so we don't
14     # know what our version is. This should not happen very often.
15     pass
16
17 from _fec import Encoder, Decoder, Error
18 import easyfec, filefec, cmdline_zfec, cmdline_zunfec
19
20 # zfec -- fast forward error correction library with Python interface
21
22 # Copyright (C) 2007 Allmydata, Inc.
23 # Author: Zooko Wilcox-O'Hearn
24 # mailto:zooko@zooko.com
25
26 # This file is part of zfec.
27 #
28 # This program is free software; you can redistribute it and/or modify it
29 # under the terms of the GNU General Public License as published by the Free
30 # Software Foundation; either version 2 of the License, or (at your option)
31 # any later version, with the added permission that, if you become obligated
32 # to release a derived work under this licence (as per section 2.b), you may
33 # delay the fulfillment of this obligation for up to 12 months.  See the
34 # COPYING file for details.