under the terms of either licence, at your option.) See the file COPYING.GPL
for the terms of the GNU General Public License, version 2. See the file
COPYING.TGPPL.html for the terms of the Transitive Grace Period Public Licence,
-version 1.0.
+version 1.0. In addition, Allmydata, Inc. offers other licensing terms. If you
+would like to inquire about a commercial relationship with Allmydata, Inc.,
+please contact partnerships@allmydata.com and visit http://allmydata.com .
The most widely known example of an erasure code is the RAID-5 algorithm which
makes it so that in the event of the loss of any one hard drive, the stored data
reference to an FFI function.
-
* Community
The source is currently available via darcs on the web with the command:
setup_requires = []
# darcsver is needed only if you want "./setup.py darcsver" to write a new
-# version stamp in pycryptopp/_version.py, with a version number derived from
+# version stamp in zfec/_version.py, with a version number derived from
# darcs history. http://pypi.python.org/pypi/darcsver
if "darcsver" in sys.argv[1:]:
setup_requires.append('darcsver >= 1.0.0')
# setuptools_darcs is required to produce complete distributions (such as with
-# "sdist" or "bdist_egg"), unless there is a PKG-INFO file present which shows
-# that this is itself a source distribution.
+# "sdist" or "bdist_egg"), unless there is a zfec.egg-info/SOURCE.txt file
+# present which contains a complete list of files that should be included.
# http://pypi.python.org/pypi/setuptools_darcs
-if not os.path.exists('PKG-INFO'):
- setup_requires.append('setuptools_darcs >= 1.0.5')
+setup_requires.append('setuptools_darcs >= 1.1.0')
data_fnames=[ 'COPYING.GPL', 'changelog', 'COPYING.TGPPL.html', 'TODO', 'README.txt' ]
try:
from _version import __version__
except ImportError:
- # We're running in a tree that hasn't run darcsver from the pyutil library,
- # and didn't come with a _version.py, so we don't know what our version
- # is. This should not happen very often.
+ # We're running in a tree that hasn't run darcsver, and didn't come with a
+ # _version.py, so we don't know what our version is. This should not happen
+ # very often.
pass
from _fec import Encoder, Decoder, Error