This file is indexed.

/usr/lib/python3/dist-packages/multipletau-2017.4.26.dev12.egg-info/PKG-INFO is in python3-multipletau 0.1.7+ds-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
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
Metadata-Version: 1.1
Name: multipletau
Version: 2017.4.26.dev12
Summary: A multiple-tau algorithm for Python/NumPy.
Home-page: https://github.com/FCS-analysis/multipletau
Author: Paul Müller
Author-email: paul.mueller@biotec.tu-dresden.de
License: BSD (3 clause)
Description: multipletau
        ===========
        
        |PyPI Version| |Build Status| |Coverage Status|
        
        Multipe-tau correlation is computed on a logarithmic scale (less
        data points are computed) and is thus much faster than conventional
        correlation on a linear scale such as `numpy.correlate <http://docs.scipy.org/doc/numpy/reference/generated/numpy.correlate.html>`__. 
        
        
        Installation
        ------------
        ``multipletau`` supports Python 2.6+ and Python 3.3+ with a common codebase.
        The only requirement for ``multipletau`` is `NumPy <http://www.numpy.org/>`__ (for fast
        operations on arrays). Install ``multipletau`` from the Python package index:
        
        ::
        
            pip install multipletau
        
        
        Documentation
        -------------
        A full code reference including examples is available `here <http://FCS-analysis.github.io/multipletau/>`__.
        
        
        Usage
        -----
        
        .. code:: python
        
            import numpy as np
            import multipletau
            a = np.linspace(2,5,42)
            v = np.linspace(1,6,42)
            multipletau.correlate(a, v, m=2)
            array([[   0.        ,  569.56097561],
            	   [   1.        ,  549.87804878],
                   [   2.        ,  530.37477692],
                   [   4.        ,  491.85812017],
                   [   8.        ,  386.39500297]])
        
        
        Citing
        ------
        The multipletau package should be cited like this
        (replace "x.x.x" with the actual version of multipletau that you used
        and "DD Month YYYY" with a matching date).
        
        Paul Müller (2012) *Python multiple-tau algorithm* (Version x.x.x) [Computer program]. Available at `<https://pypi.python.org/pypi/multipletau/>`__ (Accessed DD Month YYYY)
        
        You can find out what version you are using by typing (in a Python console):
        
        .. code:: python
        
            >>> import multipletau
            >>> multipletau.__version__
            '0.1.4'
        
        
        
        .. |PyPI Version| image:: http://img.shields.io/pypi/v/multipletau.svg
           :target: https://pypi.python.org/pypi/multipletau
        .. |Build Status| image:: http://img.shields.io/travis/FCS-analysis/multipletau.svg
           :target: https://travis-ci.org/FCS-analysis/multipletau
        .. |Coverage Status| image:: https://img.shields.io/coveralls/FCS-analysis/multipletau.svg
           :target: https://coveralls.io/r/FCS-analysis/multipletau
        
        
Keywords: multiple,tau,FCS,correlation,spectroscopy,fluorescence
Platform: ALL
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: Intended Audience :: Science/Research