/usr/lib/python3/dist-packages/Python_fontconfig-0.5.1.egg-info is in python3-fontconfig 0.5.1-1build3.
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 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 | Metadata-Version: 1.1
Name: Python-fontconfig
Version: 0.5.1
Summary: Python bindings for Fontconfig library
Home-page: https://github.com/Vayn/python-fontconfig
Author: Vayn a.k.a. VT
Author-email: vayn@vayn.de
License: LICENSE.txt
Description: =================
        Python-fontconfig
        =================
        
        Python bindings for Fontconfig_ library
        
        
        Requirement
        -----------
        
        - Fontconfig_ **Required**
        - Cython_ (if you want to regenerate C source)
        
        .. _Cython: http://cython.org/
        .. _Fontconfig: http://www.freedesktop.org/wiki/Software/fontconfig
        
        Tested on
        ~~~~~~~~~
        
        - ``Python 2.7.2`` (32-bit, 64-bit)
        - ``Python 3.2.2`` (32-bit, 64-bit)
        
        
        Installation
        ------------
        
        From PyPI::
        
          >>> pip install Python-fontconfig
        
          or
        
          >>> easy_install Python-fontconfig 
        
        From GitHub::
        
          >>> git clone git://github.com/Vayn/python-fontconfig.git
          >>> cd python-fontconfig/
          >>> python setup.py install
        
        
        Building C source
        -----------------
        
        >>> python setup.py build_ext -i 
        
        
        Testing
        -------
        
        >>> cd test/
        >>> python test.py
        
        
        Usage
        -----
        
        >>> import fontconfig
        
        >>> fonts = fontconfig.query(family='ubuntu', lang='en')
        
        >>> fonts
        ['/usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-BI.ttf',
         '/usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-L.ttf',
         '/usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-LI.ttf',
         '/usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-R.ttf',
         '/usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-B.ttf',
         '/usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-RI.ttf']
        
        >>> font = fonts[0]
        
        >>> font
        <FcFont: Ubuntu>
        
        >>> font.
        font.capability     font.fullname       font.slant
        font.count_chars    font.get_languages  font.spacing
        font.decorative     font.has_char       font.style
        font.family         font.index          font.weight
        font.file           font.outline        font.width
        font.fontformat     font.print_pattern
        font.foundry        font.scalable
        
        >>> font.family
        [('en', 'Ubuntu')]
        
        >>> font.foundry
        'unknown'
        
        >>> font.fontformat
        'TrueType'
        
        >>> font.has_char('A')
        True
        
        >>> font.file
        '/usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-BI.ttf'
        
        >>> font = fontconfig.FcFont(font.file)
        
        >>> font.family
        [('en', 'Ubuntu')]
        
        
        License
        -------
        
        This program is released under ``GPLv3`` license, see ``LICENSE`` for more detail.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: POSIX
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Topic :: Text Processing :: Fonts
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Cython
 |