Metadata-Version: 2.0
Name: TwistedChecker
Version: 0.4.0
Summary: A Twisted coding standard compliance checker.
Home-page: https://github.com/twisted/twistedchecker
Author: Twisted Matrix Laboratories
Author-email: twisted-python@twistedmatrix.com
License: MIT
Keywords: twisted,checker,compliance,pep8
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
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 :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Quality Assurance
Requires-Dist: pylint (==0.26.0)
Requires-Dist: logilab-common (==0.62.0)
Requires-Dist: pep8 (==1.5.7)
Provides-Extra: dev
Requires-Dist: twisted (>=15.0.0); extra == 'dev'
Requires-Dist: pyflakes (==0.8.1); extra == 'dev'

Twisted Coding Standard Checker
===============================

TwistedChecker checks Python code for compliance with the `Twisted coding
standard <https://twistedmatrix.com/documents/current/core/development/policy/coding-standard.html>`.

This was originally a project of Google Summer of Code 2012.

TwistedChecker's dependencies are recorded in setup.py.


Development
-----------

.. image:: https://travis-ci.org/twisted/twistedchecker.svg?branch=master
    :target: https://travis-ci.org/twisted/twistedchecker

Get a development environment::

    virtualenv build
    . build/bin/activate
    pip install -Ue '.[dev]'

To test twistedchecker, run the following in the source directory::

    trial twistedchecker

Check pyflakes status ignoring functional tests
(#68 some day we might use twistedchecker on itself)::

    python check_pyflakes.py twistedchecker/


