This file is indexed.

/usr/lib/python3/dist-packages/glyphsLib-2.2.1.egg-info/PKG-INFO is in python3-glyphslib 2.2.1-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
Metadata-Version: 1.1
Name: glyphsLib
Version: 2.2.1
Summary: A bridge from Glyphs source files (.glyphs) to UFOs
Home-page: https://github.com/googlei18n/glyphsLib
Author: James Godfrey-Kittle
Author-email: jamesgk@google.com
License: Apache Software License 2.0
Description-Content-Type: UNKNOWN
Description: |Travis Build Status| |PyPI Version| |Codecov|
        
        glyphsLib
        =========
        
        This library provides a bridge from Glyphs source files (.glyphs) to
        UFOs via `defcon <https://github.com/typesupply/defcon/>`__.
        
        The main methods for conversion are found in ``__init__.py``.
        Intermediate data can be accessed without actually writing UFOs, if
        needed.
        
        Write and return UFOs
        ^^^^^^^^^^^^^^^^^^^^^
        
        Masters:
        
        .. code:: python
        
            master_dir = 'master_ufos'
            ufos = glyphsLib.build_masters('MyFont.glyphs', master_dir)
        
        Interpolated instances (depends on
        `MutatorMath <https://github.com/LettError/mutatorMath>`__):
        
        .. code:: python
        
            master_dir = 'master_ufos'
            instance_dir = 'instance_ufos'
            ufos = glyphsLib.build_instances('MyFont.glyphs', master_dir, instance_dir)
        
        Load UFO objects without writing
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        
        .. code:: python
        
            ufos = glyphsLib.load_to_ufos('MyFont.glyphs')
        
        Read and write Glyphs data as Python objects
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        
        .. code:: python
        
            from glyphsLib import GSFont
            
            font = GSFont(glyphs_file)
            
            font.save(glyphs_file)
        
        The ``glyphsLib.classes`` module aims to provide an interface similar to
        Glyphs.app's `Python Scripting API <https://docu.glyphsapp.com>`__.
        
        Note that currently not all the classes and methods may be fully
        implemented. We try to keep up to date, but if you find something that
        is missing or does not work as expected, please open a issue.
        
        .. TODO Briefly state how much of the Glyphs.app API is currently covered,
           and what is not supported yet.
        
        .. |Travis Build Status| image:: https://travis-ci.org/googlei18n/glyphsLib.svg
           :target: https://travis-ci.org/googlei18n/glyphsLib
        .. |PyPI Version| image:: https://img.shields.io/pypi/v/glyphsLib.svg
           :target: https://pypi.org/project/glyphsLib/
        .. |Codecov| image:: https://codecov.io/gh/googlei18n/glyphsLib/branch/master/graph/badge.svg
           :target: https://codecov.io/gh/googlei18n/glyphsLib
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Multimedia :: Graphics
Classifier: Topic :: Multimedia :: Graphics :: Graphics Conversion
Classifier: Topic :: Multimedia :: Graphics :: Editors :: Vector-Based