]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
zfec: fix up the package metadata for e.g. the Python Package Index and bump to zfec...
authorZooko O'Whielacronx <zooko@zooko.com>
Fri, 27 Apr 2007 20:29:53 +0000 (13:29 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Fri, 27 Apr 2007 20:29:53 +0000 (13:29 -0700)
src/zfec/setup.py
src/zfec/zfec/__init__.py

index 870ef65271f3ff1ab3900df288bc27d5eef9fc71..d2bbd9b51a990be90dfd02895b60c065f5a10c6f 100644 (file)
@@ -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' ] },
index 7cf578503203a5f18bb3bba0b4163d981461501e..96f8959a1e0ca8dff372d867ff6728a46e463b37 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.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.