This file is indexed.

/usr/lib/python3/dist-packages/libsass-0.11.0.egg-info/PKG-INFO is in python3-libsass 0.11.0-2.

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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
Metadata-Version: 1.1
Name: libsass
Version: 0.11.0
Summary: SASS for Python: A straightforward binding of libsass for Python.
Home-page: http://hongminhee.org/libsass-python/
Author: Hong Minhee
Author-email: minhee@dahlia.kr
License: MIT License
Download-URL: https://github.com/dahlia/libsass-python/releases
Description: libsass-python: Sass_/SCSS for Python
        =====================================
        
        .. image:: https://badge.fury.io/py/libsass.svg
           :alt: PyPI
           :target: https://pypi.python.org/pypi/libsass
        
        .. image:: https://travis-ci.org/dahlia/libsass-python.svg?branch=python
           :target: https://travis-ci.org/dahlia/libsass-python
           :alt: Build Status
        
        .. image:: https://ci.appveyor.com/api/projects/status/yghrs9jw7b67c0ia/branch/python?svg=true
           :target: https://ci.appveyor.com/project/dahlia/libsass-python
           :alt: Build Status (Windows)
        
        .. image:: https://img.shields.io/coveralls/dahlia/libsass-python/python.svg
           :target: https://coveralls.io/r/dahlia/libsass-python
           :alt: Coverage Status
        
        This package provides a simple Python extension module ``sass`` which is
        binding Libsass_ (written in C/C++ by Hampton Catlin and Aaron Leung).
        It's very straightforward and there isn't any headache related Python
        distribution/deployment.  That means you can add just ``libsass`` into
        your ``setup.py``'s ``install_requires`` list or ``requirements.txt`` file.
        Need no Ruby nor Node.js.
        
        It currently supports CPython 2.6, 2.7, 3.3--3.5, and PyPy 2.3+!
        
        .. _Sass: http://sass-lang.com/
        .. _Libsass: https://github.com/sass/libsass
        
        
        Features
        --------
        
        - You don't need any Ruby/Node.js stack at all, for development or deployment
          either.
        - Fast. (Libsass_ is written in C++.)
        - Simple API.  See the below example code for details.
        - Custom functions.
        - ``@import`` callbacks.
        - Support both tabbed (Sass) and braces (SCSS) syntax.
        - WSGI middleware for ease of development.
          It automatically compiles Sass/SCSS files for each request.
        - ``setuptools``/``distutils`` integration.
          You can build all Sass/SCSS files using
          ``setup.py build_sass`` command.
        - Works also on PyPy.
        - Provides prebuilt wheel_ binaries for Windows and Mac.
        
        .. _wheel: https://www.python.org/dev/peps/pep-0427/
        
        
        Install
        -------
        
        It's available on PyPI_, so you can install it using ``pip`` (or
        ``easy_install``):
        
        .. code-block:: console
        
           $ pip install libsass
        
        .. note::
        
           libsass requires some features introduced by the recent C++ standard.
           You need a C++ compiler that support those features.
           See also libsass project's README_ file.
        
        .. _PyPI: https://pypi.python.org/pypi/libsass
        .. _README: https://github.com/sass/libsass#readme
        
        
        .. _example:
        
        Example
        -------
        
        .. code-block:: pycon
        
           >>> import sass
           >>> print sass.compile(string='a { b { color: blue; } }')
           a b {
             color: blue; }
        
        
        Docs
        ----
        
        There's the user guide manual and the full API reference for ``libsass``:
        
        http://hongminhee.org/libsass-python/
        
        You can build the docs by yourself:
        
        .. code-block:: console
        
           $ cd docs/
           $ make html
        
        The built docs will go to ``docs/_build/html/`` directory.
        
        
        Credit
        ------
        
        Hong Minhee wrote this Python binding of Libsass_.
        
        Hampton Catlin and Aaron Leung wrote Libsass_, which is portable C/C++
        implementation of SASS_.
        
        Hampton Catlin originally designed SASS_ language and wrote the first
        reference implementation of it in Ruby.
        
        The above three softwares are all distributed under `MIT license`_.
        
        .. _MIT license: http://mit-license.org/
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: C
Classifier: Programming Language :: C++
Classifier: Programming Language :: Python :: 2.6
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 :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Programming Language :: Python :: Implementation :: Stackless
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Code Generators
Classifier: Topic :: Software Development :: Compilers