zfec: fix up the package metadata for e.g. the Python Package Index and bump to zfec v1.0.0b2-0-STABLE

This commit is contained in:
Zooko O'Whielacronx 2007-04-27 13:29:53 -07:00
parent 510763334f
commit e526eb79c1
2 changed files with 23 additions and 7 deletions

View 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' ] },

View 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.