This file is indexed.

/usr/lib/python3/dist-packages/rawkit-0.6.0.egg-info/PKG-INFO is in python3-rawkit 0.6.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
Metadata-Version: 1.1
Name: rawkit
Version: 0.6.0
Summary: CTypes based LibRaw bindings
Home-page: https://rawkit.readthedocs.org
Author: Cameron Paul, Sam Whited
Author-email: sam@samwhited.com
License: UNKNOWN
Description-Content-Type: UNKNOWN
Description: rawkit
        ======
        
        .. image:: https://badge.fury.io/py/rawkit.svg?
          :alt: Package Status
          :target: https://pypi.python.org/pypi/rawkit
        
        .. image:: https://readthedocs.org/projects/rawkit/badge/?version=latest
           :alt: Docs Status
           :target: https://rawkit.readthedocs.org/en/latest/
        
        .. image:: https://secure.travis-ci.org/photoshell/rawkit.svg?branch=master
           :alt: Build Status
           :target: https://travis-ci.org/photoshell/rawkit
        
        .. image:: https://img.shields.io/coveralls/photoshell/rawkit.svg?style=flat
           :alt: Test Coverage Status
           :target: https://coveralls.io/r/photoshell/rawkit
        
        ``rawkit`` (pronounced `rocket`) is a ctypes-based LibRaw_ binding for
        Python inspired by the Wand_ API.
        
        .. sourcecode:: python
        
            from rawkit.raw import Raw
            from rawkit.options import WhiteBalance
        
            with Raw(filename='some/raw/image.CR2') as raw:
              raw.options.white_balance = WhiteBalance(camera=False, auto=True)
              raw.save(filename='some/destination/image.ppm')
        
        for more info, see the docs_
        
        .. _LibRaw: http://www.libraw.org/
        .. _Wand: http://docs.wand-py.org
        .. _docs: https://rawkit.readthedocs.org/en/latest/
        
Keywords: encoding,images,photography,libraw,raw,photos
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules