From 1eb26a9bef78d857a00d5f835cc643435337ca6e Mon Sep 17 00:00:00 2001
From: "Zooko O'Whielacronx zooko@zooko.com" <zooko@zooko.com>
Date: Sat, 28 Apr 2007 01:59:53 +0530
Subject: [PATCH] zfec: fix up the package metadata for e.g. the Python Package
 Index and bump to zfec v1.0.0b2-0-STABLE

darcs-hash:45a19c7487a4f5caf33ccf586f3f25cab885d3d9
---
 zfec/setup.py         | 28 ++++++++++++++++++++++------
 zfec/zfec/__init__.py |  2 +-
 2 files changed, 23 insertions(+), 7 deletions(-)

diff --git a/zfec/setup.py b/zfec/setup.py
index 870ef65..d2bbd9b 100755
--- a/zfec/setup.py
+++ b/zfec/setup.py
@@ -45,25 +45,41 @@ if DEBUGMODE:
 
 trove_classifiers=[
     "Development Status :: 4 - Beta", 
-    "Environment :: No Input/Output (Daemon)", 
-    "Intended Audience :: Developers", 
+    "Environment :: Console",
     "License :: OSI Approved :: GNU General Public License (GPL)", 
+    "Intended Audience :: Developers", 
+    "Intended Audience :: End Users/Desktop",
+    "Intended Audience :: System Administrators",
+    "Operating System :: Microsoft",
+    "Operating System :: Microsoft :: Windows",
+    "Topic :: Utilities",
+    "Topic :: System :: Systems Administration",
+    "Topic :: System :: Filesystems",
+    "Topic :: System :: Distributed Computing",
+    "Topic :: Software Development :: Libraries",
+    "Topic :: Communications :: Usenet News",
+    "Operating System :: Unix",
+    "Operating System :: POSIX :: Linux",
+    "Operating System :: POSIX",
+    "Operating System :: MacOS :: MacOS X",
+    "Operating System :: Microsoft :: Windows :: Windows NT/2000",
     "Natural Language :: English", 
     "Operating System :: OS Independent", 
     "Programming Language :: C", 
     "Programming Language :: Python", 
     "Topic :: System :: Archiving :: Backup", 
+    "Topic :: System :: Archiving :: Mirroring", 
+    "Topic :: System :: Archiving", 
     ]
 
 setup(name='zfec',
-      version='1.0.0b1',
-      summary='a fast erasure code with command-line, C, and Python interfaces',
-      description='Fast, portable, programmable erasure coding a.k.a. "forward error correction": the generation of redundant blocks of information such that if some blocks are lost then the original data can be recovered from the remaining blocks.',
+      version='1.0.0b2',
+      description='a fast erasure code with command-line, C, and Python interfaces',
+      long_description='Fast, portable, programmable erasure coding a.k.a. "forward error correction": the generation of redundant blocks of information such that if some blocks are lost then the original data can be recovered from the remaining blocks.',
       author='Zooko O\'Whielacronx',
       author_email='zooko@zooko.com',
       url='http://allmydata.org/source/zfec',
       license='GNU GPL',
-      platform='Any',
       packages=find_packages(),
       classifiers=trove_classifiers,
       entry_points = { 'console_scripts': [ 'zfec = zfec.cmdline_zfec:main', 'zunfec = zfec.cmdline_zunfec:main' ] },
diff --git a/zfec/zfec/__init__.py b/zfec/zfec/__init__.py
index 7cf5785..96f8959 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.0b1-0-STABLE")
+__version__ = Version("1.0.0b2-0-STABLE")
 
 # Please put a URL or other note here which shows where to get the branch of
 # development from which this version grew.
-- 
2.45.2