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