Metadata-Version: 1.1
Name: jones-complexity
Version: 0.1.0
Summary: Jones Complexity checker, plugin for flake8
Home-page: https://github.com/Miserlou/JonesComplexity
Author: Rich Jones
Author-email: rich@openwatch.net
License: Expat license
Description: JonesComplexity
        ===============
        
        Flake8 extension to calculate per-line complexity and total code
        density.
        
        Installation
        ------------
        
        ::
        
            $ pip install jones-complexity
        
        Usage (Standalone)
        ------------------
        
        ::
        
            $ python -m jones_complexity --min 5 your_file.py
        
        Usage (flake8)
        --------------
        
        ::
        
            $ flake8 --max-line-compexity 15 --max-jones-score 8 yourproject
        
        What is this?
        -------------
        
        Because
        
        .. code:: python
        
            if user.get_full_name().toUpper().split(' ')[0] == 'ALICE':
                return True
        
        is harder to read and maintain than
        
        .. code:: python
        
            if first_name == 'Alice':
               return True
        
        Shamelessly named after myself, in the tradition of McCabe and Halstead.
        
Keywords: flake8
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
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
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Quality Assurance
