summaryrefslogtreecommitdiff
path: root/setup.py
blob: e2786ccb86392bd808621b84b3a78abd3a534889 (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
from distutils.core import setup

import genbackupdatalib

setup(name='genbackupdata',
      version=genbackupdatalib.__version__,
      description='Generate test data for backup software',
      long_description='''\
genbackupdata creates or modifies directory trees in ways that simulate
real filesystems sufficiently well for performance testing of backup
software. For example, it can create files that are a mix of small text
files and big binary files, with the binary files containing random
binary junk which compresses badly. This can then be backed up, and
later the directory tree can be changed by creating new files, modifying
files, or deleting or renaming files. The backup can then be run again.

The output is deterministic, such that for a given set of parameters the
same output always happens. Thus it is more efficient to distribute
genbackupdata and a set of parameters between people who wish to
benchmark backup software than distributing very large test sets.
''',
      author='Lars Wirzenius',
      author_email='liw@iki.fi',
      url='http://braawi.org/genbackupdata/',
      classifiers=[
        'Development Status :: 3 - Alpha',
        'Environment :: Console',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: GNU General Public License (GPL)',
        'Natural Language :: English',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
        'Topic :: Software Development :: Testing',
        'Topic :: System :: Archiving :: Backup',
      ],
      license='GNU General Public License, version 3 or later',
      packages=['genbackupdatalib'],
      scripts=['genbackupdata'],
      data_files=[('share/man/man1', ['genbackupdata.1'])],
     )