This file is indexed.

/usr/share/doc/mongrel2-core/examples/zcov/setup.py is in mongrel2-core 1.11.0-1build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
try:
    from setuptools import setup
except ImportError:
    from distutils.core import setup

config = {
    'description': 'zcov',
    'author': 'Daniel Dunbar',
    'url': 'http://minormatter.com/zcov/',
    'download_url': 'http://minormatter.com/zcov/',
    'author_email': '',
    'version': '0.2',
    'scripts': ['bin/zcov-genhtml', 
                'bin/zcov-merge', 'bin/zcov-scan',
                'bin/zcov-summarize'],
    'install_requires': [],
    'packages': ['zcov'],
    'package_data': {'zcov': [
        'data/js/sorttable.js',
        'data/js/sourceview.js',
        'data/style.css'
    ]},
    'name': 'zcov'
}

setup(**config)