From: Zooko O'Whielacronx Date: Wed, 18 Apr 2007 23:01:03 +0000 (-0700) Subject: zfec: update docs, metadata, version number to 1.0.0a2-0-STABLE X-Git-Tag: tahoe_v0.1.0-0-UNSTABLE~64 X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=22e47eb3aad86d5ce0b3e0f37e0f07867e4deb8b;p=tahoe-lafs%2Ftahoe-lafs.git zfec: update docs, metadata, version number to 1.0.0a2-0-STABLE --- diff --git a/zfec/setup.py b/zfec/setup.py index 1ca9108d..ab11a1e0 100644 --- a/zfec/setup.py +++ b/zfec/setup.py @@ -1,6 +1,7 @@ #!/usr/bin/env python -# zfec -- fast forward error correction library with Python interface +# zfec -- a fast C implementation of Reed-Solomon erasure coding with +# command-line, C, and Python interfaces # # Copyright (C) 2007 Allmydata, Inc. # Author: Zooko Wilcox-O'Hearn @@ -55,9 +56,9 @@ trove_classifiers=[ ] setup(name='zfec', - version='1.0.0a1', - summary='Provides a fast C implementation of Reed-Solomon erasure coding with a Python interface.', - description='Erasure coding is the generation of redundant blocks of information such that if some blocks are lost ("erased") then the original data can be recovered from the remaining blocks. This package contains an optimized implementation along with a Python interface.', + version='1.0.0a2', + summary='a fast C implementation of Reed-Solomon erasure coding with command-line, C, and Python interfaces', + description='Erasure coding -- also called "forward error correction" -- is the generation of redundant blocks of information such that if some blocks are lost ("erased") then the original data can be recovered from the remaining blocks. This package contains an optimized implementation along with command-line, C, and Python interfaces.', author='Zooko O\'Whielacronx', author_email='zooko@zooko.com', url='http://www.allmydata.com/source/zfec', @@ -65,5 +66,6 @@ setup(name='zfec', platform='Any', packages=['zfec', 'zfec.util', 'zfec.test'], classifiers=trove_classifiers, + scripts=['bin/zfec', 'bin/zunfec',], ext_modules=[Extension('_fec', ['zfec/fec.c', 'zfec/_fecmodule.c',], extra_link_args=extra_link_args, extra_compile_args=extra_compile_args, undef_macros=undef_macros),], ) diff --git a/zfec/zfec/__init__.py b/zfec/zfec/__init__.py index 42c26463..5ac4e896 100644 --- a/zfec/zfec/__init__.py +++ b/zfec/zfec/__init__.py @@ -10,7 +10,7 @@ from util.version import Version # For an explanation of what the parts of the version string mean, # please see pyutil.version. -__version__ = Version("1.0.0a1-2-STABLE") +__version__ = Version("1.0.0a2-0-STABLE") # Please put a URL or other note here which shows where to get the branch of # development from which this version grew.