This file is indexed.

/usr/lib/python3/dist-packages/jira-1.0.10.egg-info/PKG-INFO is in python3-jira 1.0.10-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
 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
149
150
151
152
153
154
155
156
157
Metadata-Version: 1.1
Name: jira
Version: 1.0.10
Summary: Python library for interacting with JIRA via REST APIs.
Home-page: https://github.com/pycontribs/jira
Author: Sorin Sbarnea
Author-email: sorin.sbarnea@gmail.com
License: BSD
Description-Content-Type: UNKNOWN
Description: ===================
        JIRA Python Library
        ===================
        
        .. image:: https://img.shields.io/pypi/v/jira.svg
                :target: https://pypi.python.org/pypi/jira/
        
        .. image:: https://img.shields.io/pypi/l/jira.svg
                :target: https://pypi.python.org/pypi/jira/
        
        .. image:: https://img.shields.io/pypi/dm/jira.svg
                :target: https://pypi.python.org/pypi/jira/
        
        .. image:: https://img.shields.io/pypi/wheel/Django.svg
                :target: https://pypi.python.org/pypi/jira/
        
        ------------
        
        .. image:: https://readthedocs.org/projects/jira/badge/?version=master
                :target: http://jira.readthedocs.io
        
        .. image:: https://api.travis-ci.org/pycontribs/jira.svg?branch=master
                :target: https://travis-ci.org/pycontribs/jira
        
        .. image:: https://img.shields.io/pypi/status/jira.svg
                :target: https://pypi.python.org/pypi/jira/
        
        .. image:: https://codecov.io/gh/pycontribs/jira/branch/develop/graph/badge.svg
                :target: https://codecov.io/gh/pycontribs/jira
        
        .. image:: https://img.shields.io/bountysource/team/pycontribs/activity.svg
                :target: https://www.bountysource.com/teams/pycontribs/issues?tracker_ids=3650997
        
        .. image:: https://requires.io/github/pycontribs/jira/requirements.svg?branch=master
                :target: https://requires.io/github/pycontribs/jira/requirements/?branch=master
                :alt: Requirements Status
        
        
        This library eases the use of the JIRA REST API from Python and it has been used in production for years.
        
        As this is an open-source project that is community maintained, do not be surprised if some bugs or features are not implemented quickly enough. You are always welcomed to use BountySource_ to motivate others to help.
        
        .. _BountySource: https://www.bountysource.com/teams/pycontribs/issues?tracker_ids=3650997
        
        
        Quickstart
        ----------
        
        Feeling impatient? I like your style.
        
        .. code-block:: python
        
                from jira import JIRA
        
                jira = JIRA('https://jira.atlassian.com')
        
                issue = jira.issue('JRA-9')
                print issue.fields.project.key             # 'JRA'
                print issue.fields.issuetype.name          # 'New Feature'
                print issue.fields.reporter.displayName    # 'Mike Cannon-Brookes [Atlassian]'
        
        
        Installation
        ~~~~~~~~~~~~
        
        Download and install using ``pip install jira`` or ``easy_install jira``
        
        You can also try ``pip install --user --upgrade jira`` which will install or
        upgrade jira to your user directory. Or maybe you ARE using a virtualenv_
        right?
        
        .. _virtualenv: http://www.virtualenv.org/en/latest/index.html
        
        
        Usage
        ~~~~~
        
        See the documentation_ for full details.
        
        .. _documentation: http://jira.readthedocs.org/en/latest/
        
        
        Development
        ~~~~~~~~~~~
        
        Development takes place on GitHub_, where the git-flow_ branch structure is used:
        
        * ``master`` - contains the latest released code.
        * ``develop`` - (default branch) is used for development of the next release.
        * ``feature/XXX`` - feature branches are used for development of new features before they are merged to ``develop``.
        
        .. _GitHub: https://github.com/pycontribs/jira
        .. _git-flow: http://nvie.com/posts/a-successful-git-branching-model/
        
        
        Credits
        -------
        
        In additions to all the contributors we would like to thank to these companies:
        
        * Atlassian_ for developing such a powerful issue tracker and for providing a free on-demand JIRA_ instance that we can use for continous integration testing.
        * JetBrains_ for providing us with free licenses of PyCharm_
        * Travis_ for hosting our continous integration
        * Navicat_ for providing us free licenses of their powerful database client GUI tools.
        * Citrix_ for providing maintenance of the library.
        
        .. _Atlassian: https://www.atlassian.com/
        .. _JIRA: https://pycontribs.atlassian.net
        .. _JetBrains: http://www.jetbrains.com
        .. _PyCharm: http://www.jetbrains.com/pycharm/
        .. _Travis: https://travis-ci.org/
        .. _navicat: https://www.navicat.com/
        .. _Citrix: http://www.citrix.com/
        
        .. image:: https://images1-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&refresh=3600&resize_h=50&url=https://www.atlassian.com/dms/wac/images/press/Atlassian-logos/logoAtlassianPNG.png
           :target: http://www.atlassian.com
        
        .. image:: https://images1-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&refresh=3600&resize_h=50&url=http://blog.jetbrains.com/pycharm/files/2015/12/PyCharm_400x400_Twitter_logo_white.png
            :target: http://www.jetbrains.com/
        
        .. image:: https://images1-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&refresh=3600&resize_h=50&url=https://upload.wikimedia.org/wikipedia/en/9/90/PremiumSoft_Navicat_Premium_Logo.png
            :target: http://www.navicat.com/
        
        .. image:: https://images1-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&refresh=3600&resize_h=50&url=https://www.citrix.com/content/dam/citrix/en_us/images/logos/citrix/citrix-logo-black.jpg
            :target: http://www.citrix.com/
        
        
Keywords: api
atlassian
jira
rest
web
rest
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet :: WWW/HTTP