This file is indexed.

/usr/lib/python2.7/dist-packages/incremental-16.10.1.egg-info/PKG-INFO is in python-incremental 16.10.1-3.

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
Metadata-Version: 1.1
Name: incremental
Version: 16.10.1
Summary: UNKNOWN
Home-page: https://github.com/hawkowl/incremental
Author: Amber Brown
Author-email: hawkowl@twistedmatrix.com
License: MIT
Description: Incremental
        ===========
        
        |travis|
        |pypi|
        |coverage|
        
        Incremental is a small library that versions your Python projects.
        
        API documentation can be found `here <https://hawkowl.github.io/incremental/docs/>`_.
        
        
        Quick Start
        -----------
        
        Add this to your ``setup.py``\ 's ``setup()`` call:
        
        .. code::
        
           setup(
               use_incremental=True,
               setup_requires=['incremental'],
               install_requires=['incremental'], # along with any other install dependencies
               ...
           }
        
        
        Then in your project add a ``_version.py`` that contains:
        
        .. code::
        
           from incremental import Version
        
           __version__ = Version("widgetbox", 1, 2, 3)
           __all__ = ["__version__"]
        
        
        Then, so users of your project can find your version, in your project's ``__init__.py`` add:
        
        .. code::
        
           from ._version import __version__
        
        
        Subsequent installations of your project will use incremental for versioning.
        
        .. |coverage| image:: https://codecov.io/github/hawkowl/incremental/coverage.svg?branch=master
        .. _coverage: https://codecov.io/github/hawkowl/incremental
        
        .. |travis| image:: https://travis-ci.org/hawkowl/incremental.svg?branch=master
        .. _travis: http://travis-ci.org/hawkowl/incremental
        
        .. |pypi| image:: http://img.shields.io/pypi/v/incremental.svg
        .. _pypi: https://pypi.python.org/pypi/incremental
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
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.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5