Metadata-Version: 2.1
Name: pylint-mccabe
Version: 0.1.3
Summary: McCabe complexity checker as a PyLint plugin
Home-page: http://pypi.python.org/pypi/pylint-mccabe/
Author: Infoxchange Australia dev team
Author-email: devs@infoxchange.net.au
License: MIT
Requires-Dist: mccabe>=0.2
Requires-Dist: pep8>=1.4.6
Requires-Dist: pylint>=0.28.0

McCabe complexity checker as a PyLint plugin
============================================

This module provides a PyLint plugin to check McCabe code complexity.


Usage
-----

In pylint.conf::

    [MASTER]
    load-plugins=pylint_mccabe

    [DESIGN]
    max-complexity=10

Dependencies
------------

* mccabe and pylint, obviously
* pep8: Not required for functionality but is used to check the code style
