This file is indexed.

/usr/lib/python2.7/dist-packages/pyFFTW-0.9.2.egg-info is in python-pyfftw 0.9.2+dfsg-2.

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
Metadata-Version: 1.1
Name: pyFFTW
Version: 0.9.2
Summary: A pythonic wrapper around FFTW, the FFT library, presenting a unified interface for all the supported transforms.
Home-page: http://hgomersall.github.com/pyFFTW/
Author: Henry Gomersall
Author-email: heng@kedevelopments.co.uk
License: UNKNOWN
Description: 
        pyFFTW is a pythonic wrapper around `FFTW <http://www.fftw.org/>`_, the
        speedy FFT library. The ultimate aim is to present a unified interface for all
        the possible transforms that FFTW can perform.
        
        Both the complex DFT and the real DFT are supported, as well as arbitrary
        axes of abitrary shaped and strided arrays, which makes it almost
        feature equivalent to standard and real FFT functions of ``numpy.fft`` 
        (indeed, it supports the ``clongdouble`` dtype which ``numpy.fft`` does not).
        
        Operating FFTW in multithreaded mode is supported.
        
        A comprehensive unittest suite can be found with the source on the github 
        repository.
        
        To build for windows from source, download the fftw dlls for your system
        and the header file from here (they're in a zip file):
        http://www.fftw.org/install/windows.html and place them in the pyfftw
        directory. The files are libfftw3-3.dll, libfftw3l-3.dll, libfftw3f-3.dll 
        and libfftw3.h.
        
        Under linux, to build from source, the FFTW library must be installed already.
        This should probably work for OSX, though I've not tried it.
        
        Numpy is a dependency for both.
        
        The documentation can be found 
        `here <http://hgomersall.github.com/pyFFTW/>`_, and the source
        is on `github <https://github.com/hgomersall/pyFFTW>`_.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Multimedia :: Sound/Audio :: Analysis