This file is indexed.

/usr/lib/python2.7/dist-packages/GooCalendar-0.3.egg-info/PKG-INFO is in python-goocalendar 0.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
Metadata-Version: 1.1
Name: GooCalendar
Version: 0.3
Summary: A calendar widget for GTK using PyGoocanvas
Home-page: https://goocalendar.tryton.org/
Author: Cédric Krier
Author-email: cedric.krier@b2ck.com
License: GPL-2
Description: GooCalendar
        ===========
        
        A calendar widget for GTK using PyGoocanvas
        
        Nutshell
        --------
        
        Example usage::
        
            >>> import datetime
            >>> import goocalendar
            >>> event_store = goocalendar.EventStore()
            >>> calendar = goocalendar.Calendar(event_store)
            >>> event = goocalendar.Event('Birthday',
            ...     datetime.date.today(),
            ...     bg_color='lightgreen')
            >>> event_store.add(event)
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: X11 Applications :: GTK
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2 :: Only
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Widget Sets