This file is indexed.

/usr/share/pyshared/pyknon-0.1.egg-info is in python-pyknon 1.0-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
Metadata-Version: 1.0
Name: pyknon
Version: 0.1
Summary: UNKNOWN
Home-page: UNKNOWN
Author: UNKNOWN
Author-email: UNKNOWN
License: MIT
Description: Introduction
        ============
        
        Pyknon is a simple music library for Python hackers. With Pyknon you
        can generate Midi files quickly and reason about musical
        proprieties.
        
        Pyknon works with Python 2.7 and 3.2.
        
        Usage
        =====
        
        Pyknon is very simple to use, here's a basic example to create 4 notes
        and save into a MIDI file::
        
            from pyknon.genmidi import Midi
            from pyknon.music import NoteSeq
        
            notes1 = NoteSeq("D4 F#8 A Bb4")
            midi = Midi(1, tempo=90)
            midi.seq_notes(notes1, track=0)
            midi.write("demo.mid")
        
        See the documentation for more details.
        
        License
        =======
        
        This library is released under a MIT license. See the LICENSE file for
        more details.
        
        Pyknon's MIDI module is heavily based on Mark Conway Wirt's MIDIUtil.
        
Platform: UNKNOWN