This file is indexed.

/usr/lib/python3/dist-packages/csb-1.2.3.egg-info is in python3-csb 1.2.3+dfsg-3.

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
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
Metadata-Version: 1.1
Name: csb
Version: 1.2.3
Summary: Computational Structural Biology Toolbox
Home-page: http://csb.codeplex.com
Author: Michael Habeck et al.
Author-email: ivan.kalev@gmail.com
License: MIT
Description: Computational Structural Biology Toolbox
        ========================================
        
        CSB is a python library and application framework, which can be used
        to solve problems in the field of structural bioinformatics. If
        you are a bioinformatician, software engineer or a researcher working
        in this field, chances are you may find something useful here. Our
        package consists of a few major components:
        
            1. Core class library -- object-oriented, granular, with an emphasis
               on design and clean interfaces. 
               
            2. Application framework -- console applications ("protocols"),
               which consume objects from the core library in order to build
               something executable (and hopefully useful).
               
            3. Test framework -- ensures that the library *actually* works.
        
        
        Compatibility
        -------------
        
        In short: CSB requires python 2.6 or higher.
        
        CSB is being developed on Linux, under python 2.7. However, compatibility
        is a design goal and the package works on any platform, on any modern python
        interpreter since version 2.6 (that includes python 3 support out of
        the box). If you found any issues on a platform/interpreter different from
        our development environment, please let us know.
        
        
        Installation 
        ------------
        
        Full installation instructions can be found in the INSTALL file packaged with
        this release, as well as on the project's web site:
        
            http://csb.codeplex.com/documentation
        
        Here we provide only a brief summary of the installation procedure.
        First, make sure all required dependencies are installed:
            
            1. numpy, scipy -- required
            2. matplotlib and wxPython -- optional, needed only if you want to use csb.io.plots
            3. unittest2, argparse -- needed only if you are running python 2.6
            
        Next, install CSB::     
        
            $ python setup.py install
            
        CSB has just been installed at the following location::
        
            $ python -c "import csb, os; print(os.path.abspath(os.path.join(csb.__path__[0], '..')))"
        
        Let us call this path *$LIB*.
                    
        
        Testing
        -------
        
        Running the CSB test suite may be useful if you made any modifications to
        the source code, or if you simply want to check if your installation works.
        
        All CSB tests are executed with the csb.test.Console. A typical way to run 
        the console is::
        
            $ python $LIB/csb/test/app.py "csb.test.cases.*"
            
        or just::
        
            $ python $LIB/csb/test/app.py         
        
        For help try::
        
            $ python $LIB/csb/test/app.py -h    
        
        For more details on our test framework, including guidelines for writing
        unit tests, please refer to the API documentation, package "csb.test".
        
        
        Running CSB Applications
        ------------------------
        
        CSB is bundled with a number of executable console csb.apps. Each app
        provides a standard command line interface. To run any app, try::
        
            $ python $LIB/csb/apps/appname.py --help
            
        where *appname* is the name of the application. For more details on
        our app framework, including guidelines for writing new applications,
        please refer to the API documentation, package "csb.apps".
        
        
        Documentation
        -------------
        
        The project's web site at `CodePlex <http://csb.codeplex.com>`_ contains
        online documentation and samples. Be sure to check
            
            http://csb.codeplex.com/documentation
        
        Detailed API documentation can be found in the "docs/api" directory in the
        distribution package (docs/api/index.html). Many packages contain
        introductory module level documentation and samples/tutorials. These are also
        available in the HTML docs, but a quick way to access them is by using
        the built-in python help system. For example, for a general introduction
        see the module documentation of the root package::
        
            $ python -c "import csb; help(csb)"
        
        If you are interested in a specific package, such as cs.bio.sequence,
        try::    
            
            $ python -c "import csb.bio.sequence; help(csb.bio.sequence)"
        
        
        Contact
        -------
        
        CSB is developed by Michael Habeck's Computational Structural Biology
        `research group <http://www.eb.tuebingen.mpg.de/research/research-groups/michael-habeck.html>`_.
            
        For complete source code, contribution, support or bug reports please visit
        our web site at CodePlex:
          
            `csb.codeplex.com <http://csb.codeplex.com>`_
            
        
        License
        -------
        
        CSB is open source and distributed under OSI-approved MIT license.
        ::
        
            Copyright (c) 2012 Michael Habeck
            
            Permission is hereby granted, free of charge, to any person obtaining
            a copy of this software and associated documentation files (the
            "Software"), to deal in the Software without restriction, including
            without limitation the rights to use, copy, modify, merge, publish,
            distribute, sublicense, and/or sell copies of the Software, and to
            permit persons to whom the Software is furnished to do so, subject to
            the following conditions:
            
            The above copyright notice and this permission notice shall be
            included in all copies or substantial portions of the Software.
            
            THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
            EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
            MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
            IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
            CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
            TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
            SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: Topic :: Software Development :: Libraries
Requires: numpy
Requires: scipy