]> git.rkrishnan.org Git - tahoe-lafs/zfec.git/commitdiff
zfec: update docs, metadata, version number to 1.0.0a2-0-STABLE
authorzooko <zooko@zooko.com>
Wed, 18 Apr 2007 23:01:03 +0000 (04:31 +0530)
committerzooko <zooko@zooko.com>
Wed, 18 Apr 2007 23:01:03 +0000 (04:31 +0530)
darcs-hash:2ae10cbb029cde5f3c6546f6ace54ca439397233

zfec/setup.py
zfec/zfec/__init__.py

index 1ca9108d533664b1ca954a305533b61829afc886..ab11a1e01b6fcae68ff72ff12e7d43e21271fab2 100755 (executable)
@@ -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),],
       )
index 42c264633804e014175e6306f03d10dce69cde39..5ac4e8969707a7b24b64abe2610a3e54c28161f3 100644 (file)
@@ -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.