/usr/share/pyshared/pyflakes-0.8.1.egg-info/PKG-INFO is in pyflakes 0.8.1-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 | Metadata-Version: 1.1
Name: pyflakes
Version: 0.8.1
Summary: passive checker of Python programs
Home-page: https://launchpad.net/pyflakes
Author: Florent Xicluna
Author-email: pyflakes-dev@lists.launchpad.net
License: MIT
Description: ========
Pyflakes
========
A simple program which checks Python source files for errors.
Pyflakes analyzes programs and detects various errors. It works by
parsing the source file, not importing it, so it is safe to use on
modules with side effects. It's also much faster.
It is `available on PyPI <http://pypi.python.org/pypi/pyflakes>`_
and it supports all active versions of Python from 2.5 to 3.4.
Installation
------------
It can be installed with::
$ pip install --upgrade pyflakes
Mailing-list
------------
Share your feedback and ideas: `subscribe to the mailing-list
<http://mail.python.org/mailman/listinfo/code-quality>`_
.. image:: https://api.travis-ci.org/pyflakes/pyflakes.png
:target: https://travis-ci.org/pyflakes/pyflakes
:alt: Build status
.. image:: https://pypip.in/wheel/pyflakes/badge.png
:target: https://pypi.python.org/pypi/pyflakes
:alt: Wheel Status
Platform: UNKNOWN
Classifier: Development Status :: 6 - Mature
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development
Classifier: Topic :: Utilities
|