This file is indexed.

/usr/lib/python3/dist-packages/CherryPy-8.9.1.egg-info/PKG-INFO is in python3-cherrypy3 8.9.1-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
Metadata-Version: 1.2
Name: CherryPy
Version: 8.9.1
Summary: Object-Oriented HTTP framework
Home-page: http://www.cherrypy.org
Author: CherryPy Team
Author-email: team@cherrypy.org
License: BSD
Description-Content-Type: UNKNOWN
Description: .. image:: https://img.shields.io/pypi/v/cherrypy.svg
           :target: https://pypi.org/project/cherrypy
        
        .. image:: https://readthedocs.org/projects/cherrypy/badge/?version=latest
          :target: http://docs.cherrypy.org/en/latest/?badge=latest
        
        .. image:: https://img.shields.io/travis/cherrypy/cherrypy/master.svg?label=Linux%20build%20%40%20Travis%20CI
           :target: http://travis-ci.org/cherrypy/cherrypy
        
        .. image:: https://img.shields.io/appveyor/ci/jaraco/cherrypy/master.svg?label=Windows%20build%20%40%20Appveyor
           :target: https://ci.appveyor.com/project/jaraco/cherrypy/branch/master
        
        .. image:: https://img.shields.io/pypi/pyversions/cherrypy.svg
        
        .. image:: https://img.shields.io/pypi/dm/cherrypy.svg
        
        .. image:: https://api.codacy.com/project/badge/Grade/48b11060b5d249dc86e52dac2be2c715
           :target: https://www.codacy.com/app/webknjaz/cherrypy-upstream?utm_source=github.com&utm_medium=referral&utm_content=cherrypy/cherrypy&utm_campaign=Badge_Grade
        
        Welcome to the GitHub repository of `CherryPy <http://cherrypy.org/>`_!
        
        CherryPy is a pythonic, object-oriented HTTP framework.
        
        1. It allows building web applications in much the same way one would
           build any other object-oriented program.
        2. This design results in less and more readable code being developed faster.
           It's all just properties and methods.
        3. It is now more than ten years old and has proven fast and very
           stable.
        4. It is being used in production by many sites, from the simplest to
           the most demanding.
        5. And perhaps most importantly, it is fun to work with :-)
        
        Here's how easy it is to write "Hello World" in CherryPy:
        
        .. code:: python
        
            import cherrypy
        
            class HelloWorld(object):
                @cherrypy.expose
                def index(self):
                    return "Hello World!"
        
            cherrypy.quickstart(HelloWorld())
        
        And it continues to work that intuitively when systems grow, allowing
        for the Python object model to be dynamically presented as a web site
        and/or API.
        
        While CherryPy is one of the easiest and most intuitive frameworks out
        there, the prerequisite for understanding the `CherryPy
        documentation <http://docs.cherrypy.org/en/latest/>`_ is that you have
        a general understanding of Python and web development.
        Additionally:
        
        -  Tutorials are included in the repository:
           https://github.com/cherrypy/cherrypy/tree/master/cherrypy/tutorial
        -  A general wiki at(will be moved to github):
           https://bitbucket.org/cherrypy/cherrypy/wiki/Home
        -  Plugins are described at: http://tools.cherrypy.org/
        
        If the docs are insufficient to address your needs, the CherryPy
        community has several `avenues for support
        <https://docs.cherrypy.org/en/latest/support>`_.
        
        Contributing
        ------------
        
        Please follow the `contribution guidelines
        <http://docs.cherrypy.org/en/latest/contribute.html>`_.
        And by all means, absorb the `Zen of
        CherryPy <https://bitbucket.org/cherrypy/cherrypy/wiki/ZenOfCherryPy>`_.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: Freely Distributable
Classifier: Operating System :: OS Independent
Classifier: Framework :: CherryPy
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: Jython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Server
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Requires-Python: >=2.6,!=3.0.*