This file is indexed.

/usr/lib/python3/dist-packages/astroscrappy-1.0.3.egg-info/PKG-INFO is in python3-astroscrappy 1.0.3-6build1.

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
Metadata-Version: 1.0
Name: astroscrappy
Version: 1.0.3
Summary: Speedy Cosmic Ray Annihilation Package in Python
Home-page: https://github.com/astropy/astroscrappy
Author: Curtis McCully
Author-email: cmccully@lcogt.net
License: BSD
Description: 
        Astro-SCRAPPY: The Speedy Cosmic Ray Annihilation Package in Python
        ===================================================================
        
        Name : Astro-SCRAPPY
        Author : Curtis McCully
        Date : October 2014
        
        Optimized Cosmic Ray Detector:
        
        Astro-SCRAPPY is designed to detect cosmic rays in images (numpy arrays),
        originally based on Pieter van Dokkum's L.A.Cosmic algorithm.
        
        Much of this was originally adapted from cosmics.py written by Malte Tewes.
        I have ported all of the slow functions to Cython/C, and optimized
        where I can. This is designed to be as fast as possible so some of the
        readability has been sacrificed, specifically in the C code.
        
        L.A.Cosmic = LAplacian Cosmic ray detection
        
        If you use this code, please consider adding this repository address in a
        footnote: https://github.com/astropy/astroscrappy.
        
        Please cite the original paper which can be found at:
        http://www.astro.yale.edu/dokkum/lacosmic/
        
        van Dokkum 2001, PASP, 113, 789, 1420
        (article : http://adsabs.harvard.edu/abs/2001PASP..113.1420V)
        
        This code requires Cython, preferably version >= 0.21.
        
        Parallelization is achieved using OpenMP. This code should compile (although
        the Cython files may have issues) using a compiler that does not support OMP,
        e.g. clang.
        
        Notes
        -----
        There are some differences from original LACosmic:
        
            - Automatic recognition of saturated stars.
              This avoids treating such stars as large cosmic rays.
        
            - I have tried to optimize all of the code as much as possible while
              maintaining the integrity of the algorithm. One of the key speedups is to
              use a separable median filter instead of the true median filter. While these
              are not identical, they produce comparable results and the separable version
              is much faster.
        
            - This implementation is much faster than the Python by as much as a factor of
              28 depending on the given parameters.
              This implementation is much faster than the original IRAF version, by a factor
              of ~90.
        
        Note that arrays always must be C-contiguous, thus all loops are y outer, x inner.
        This follows the Pyfits convention.
        
        scipy is required for certain tests to pass, but the code itself does not depend on
        scipy.
        
Platform: UNKNOWN