This file is indexed.

/usr/lib/python3/dist-packages/ase-3.15.0.egg-info/PKG-INFO is in python3-ase 3.15.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
 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
Metadata-Version: 1.1
Name: ase
Version: 3.15.0
Summary: Atomic Simulation Environment
Home-page: https://wiki.fysik.dtu.dk/ase
Author: ASE-community
Author-email: ase-users@listserv.fysik.dtu.dk
License: LGPLv2.1+
Description-Content-Type: UNKNOWN
Description: Atomic Simulation Environment
        =============================
        
        ASE is a set of tools and Python modules for setting up, manipulating,
        running, visualizing and analyzing atomistic simulations.
        
        Webpage: http://wiki.fysik.dtu.dk/ase
        
        
        Requirements
        ------------
        
        * Python_ 2.7, 3.4-3.6
        * NumPy_ (base N-dimensional array package)
        
        Optional:
        
        * SciPy_ (library for scientific computing)
        * For ASE's GUI: Matplotlib_ (2D Plotting)
        
        
        Installation
        ------------
        
        Add ``~/ase`` to your $PYTHONPATH environment variable and add
        ``~/ase/bin`` to $PATH (assuming ``~/ase`` is where your ASE folder is).
        
        
        Testing
        -------
        
        Please run the tests::
        
            $ ase test  # takes 1 min.
        
        and send us the output if there are failing tests.
        
        
        Contact
        -------
        
        * Mailing list: ase-users_
        * IRC_: #ase on freenode.net
        
        Please send us bug-reports, patches, code, ideas and questions.
        
        
        Example
        -------
        
        Geometry optimization of hydrogen molecule with NWChem:
        
        >>> from ase import Atoms
        >>> from ase.optimize import BFGS
        >>> from ase.calculators.nwchem import NWChem
        >>> from ase.io import write
        >>> h2 = Atoms('H2',
                       positions=[[0, 0, 0],
                                  [0, 0, 0.7]])
        >>> h2.calc = NWChem(xc='PBE')
        >>> opt = BFGS(h2, trajectory='h2.traj')
        >>> opt.run(fmax=0.02)
        BFGS:   0  19:10:49    -31.435229     2.2691
        BFGS:   1  19:10:50    -31.490773     0.3740
        BFGS:   2  19:10:50    -31.492791     0.0630
        BFGS:   3  19:10:51    -31.492848     0.0023
        >>> write('H2.xyz', h2)
        >>> h2.get_potential_energy()  # ASE's units are eV and Ang
        -31.492847800329216
        
        ::
        
            $ ase gui h2.traj
        
        
        .. _Python: http://www.python.org/
        .. _NumPy: http://docs.scipy.org/doc/numpy/reference/
        .. _SciPy: http://docs.scipy.org/doc/scipy/reference/
        .. _Matplotlib: http://matplotlib.org/
        .. _ase-users: https://listserv.fysik.dtu.dk/mailman/listinfo/ase-users
        .. _IRC: http://webchat.freenode.net/?randomnick=0&channels=ase
        
Platform: unix
Classifier: Development Status :: 6 - Mature
Classifier: License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Scientific/Engineering :: Physics