This file is indexed.

/usr/lib/python2.7/dist-packages/preggy/__meta__.py is in python-preggy 1.1.3-1.

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
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
53
54
55
56
57
58
# -*- coding: utf-8 -*-
'''All metadata not related to the installation process.'''


# preggy assertions
# https://github.com/heynemann/preggy

# Licensed under the MIT license:
# http://www.opensource.org/licenses/mit-license
# Copyright (c) 2013 Bernardo Heynemann heynemann@gmail.com

# flake8: noqa

from datetime import date


#--------------------------------------------------------------------------------
#   GENERAL
#--------------------------------------------------------------------------------
__name__        = 'preggy'  # normally preggy.__meta__
__version__     = '1.1.3'
__date__        = date(2014, 10, 2)  # TODO: auto-populate each release using a git hook
__keywords__    = 'test testing assert assertion library development'
__status__      = 'Production'


#--------------------------------------------------------------------------------
#   URLS
#--------------------------------------------------------------------------------
__url__         = 'http://heynemann.github.io/preggy'
__download_url__= 'https://github.com/heynemann/preggy/releases/tag/{version}'.format(version=__version__)
__bugtrack_url__= 'http://github.com/heynemann/preggy/issues'


#--------------------------------------------------------------------------------
#   PEOPLE
#--------------------------------------------------------------------------------
__author__      = 'Bernardo Heynemann'
__author_email__= 'heynemann@gmail.com'

__maintainer__      = 'Zearin'
__maintainer_email__= 'zearin@gonk.net'

__credits__     = (__author__, __maintainer__,)


#--------------------------------------------------------------------------------
#   LEGAL
#--------------------------------------------------------------------------------
__copyright__   = 'Copyright (c) 2013 {author} <{email}>'.format(
    author=__author__,
    email=__author_email__)

__license__     = 'MIT'
__license_full__= '''
Licensed under the MIT license:
http://www.opensource.org/licenses/mit-license
'''.strip()