Metadata-Version: 1.1
Name: flake8-pep257
Version: 1.0.4
Summary: Flake8 plugin for the pep257 Python utility.
Home-page: https://github.com/Robpol86/flake8-pep257
Author: @Robpol86
Author-email: robpol86@gmail.com
License: MIT
Description: =============
        flake8-pep257
        =============
        
        This is just a simple flake8 plugin for the `pep257 <https://github.com/GreenSteam/pep257>`_ Python utility for
        validating docstrings.
        
        * Python 2.6, 2.7, PyPy, PyPy3, 3.3, 3.4, and 3.5 supported on Linux and OS X.
        * Python 2.7, 3.3, 3.4, and 3.5 supported on Windows (both 32 and 64 bit versions of Python).
        
        .. image:: https://img.shields.io/appveyor/ci/Robpol86/flake8-pep257/master.svg?style=flat-square&label=AppVeyor%20CI
            :target: https://ci.appveyor.com/project/Robpol86/flake8-pep257
            :alt: Build Status Windows
        
        .. image:: https://img.shields.io/travis/Robpol86/flake8-pep257/master.svg?style=flat-square&label=Travis%20CI
            :target: https://travis-ci.org/Robpol86/flake8-pep257
            :alt: Build Status
        
        .. image:: https://img.shields.io/coveralls/Robpol86/flake8-pep257/master.svg?style=flat-square&label=Coveralls
            :target: https://coveralls.io/github/Robpol86/flake8-pep257
            :alt: Coverage Status
        
        .. image:: https://img.shields.io/pypi/v/flake8-pep257.svg?style=flat-square&label=Latest
            :target: https://pypi.python.org/pypi/flake8-pep257
            :alt: Latest Version
        
        .. image:: https://img.shields.io/pypi/dm/flake8-pep257.svg?style=flat-square&label=PyPI%20Downloads
            :target: https://pypi.python.org/pypi/flake8-pep257
            :alt: Downloads
        
        Quickstart
        ==========
        
        Install:
        
        .. code:: bash
        
            pip install flake8-pep257
        
        Run:
        
        .. code:: bash
        
            flake8
        
        Error Codes
        ===========
        
        List of error codes are available here: http://pep257.readthedocs.org/en/latest/error_codes.html
        
        Configuration
        =============
        
        Settings may be specified in ``tox.ini`` (under the ``[flake8]`` or ``[pep257]`` sections), ``setup.cfg``, and/or
        ``.pep257``. Refer to `this page <http://pep257.readthedocs.org/en/latest/usage.html>`_ for more information.
        
        When specifying settings in ``tox.ini`` under the ``[flake8]`` section, use ``show-source`` instead of ``source`` and
        ``show-pep257`` instead of ``explain``.
        
        Changelog
        =========
        
        This project adheres to `Semantic Versioning <http://semver.org/>`_.
        
        1.0.4 - 2015-11-14
        ------------------
        
        Fixed
            * pep257 v0.7.0 compatibility.
        
        1.0.3 - 2015-05-31
        ------------------
        
        Fixed
            * unicode bug.
        
        1.0.2 - 2015-04-04
        ------------------
        
        Fixed
            * setup.py requirements bug.
        
        1.0.0 - 2015-04-04
        ------------------
        
        * Initial release.
        
Keywords: flake8 pep257 docstrings
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: MacOS X
Classifier: Environment :: Win32 (MS Windows)
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Quality Assurance
