summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-08-03 14:54:58 +0100
committerLars Wirzenius <liw@liw.fi>2011-08-03 14:54:58 +0100
commit6772f5deb429c8ae2e01eadc9d03e1e02f062b09 (patch)
tree193d6b1f305f028eb405164dae2eca3fca66df23
parentaf2c38d0de65bc4bc7aa736cc023f9039fa5a1e2 (diff)
downloadseivot-6772f5deb429c8ae2e01eadc9d03e1e02f062b09.tar.gz
Update setup.py for release (and pypi).
-rw-r--r--setup.py30
1 files changed, 28 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 0cd8507..2ec9d37 100644
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
#!/usr/bin/python
# setup.py - Python distutils module for Seivot
-# Copyright (C) 2008 Lars Wirzenius, Richard Braakman
+# Copyright (C) 2008, 2011 Lars Wirzenius, Richard Braakman
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -16,11 +16,37 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from distutils.core import setup
+import glob
setup(name='seivot',
- version='1.10',
+ version='1.11',
description='Backup software benchmark software',
+ long_description='''\
+seivot generates synthetic test data and backs it up using the
+desired backup tool. It then modifies the test data, and makes
+further backups. It also does restores, verifications, and
+forgets backup generations. It measures the runtime and memory
+usage of each run of the backup program.
+
+seivot currently works only for obnam, but welcomes patches for
+other backup programs.
+''',
+ classifiers=[
+ 'Development Status :: 4 - Beta',
+ 'Environment :: Console',
+ 'Intended Audience :: Developers',
+ 'Intended Audience :: System Administrators',
+ 'License :: OSI Approved :: GNU General Public License (GPL)',
+ 'Operating System :: Unix',
+ 'Programming Language :: Python :: 2',
+ 'Topic :: Software Development :: Testing',
+ 'Topic :: System :: Archiving :: Backup',
+ 'Topic :: System :: Benchmark',
+ ],
author='Lars Wirzenius',
author_email='liw@liw.fi',
+ url='http://liw.fi/seivot/',
scripts=['seivot', 'seivots-summary'],
+ data_files=[('share/man/man1', glob.glob('*.1'))],
)
+