summaryrefslogtreecommitdiff
path: root/setup.py
blob: 54c887d964dc9a61bc0f81d4499eef3212ba38cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/python
# setup.py - Python distutils module for Seivot
# 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
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

from distutils.core import setup
import glob

setup(name='seivot',
      version='1.18',
      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', 'seivots-to-csv'],
      data_files=[('share/man/man1', glob.glob('*.1'))],
     )