Metadata-Version: 2.0
Name: colour-valgrind
Version: 0.3.7
Summary: Wraps Valgrind to colour the output.
Home-page: http://github.com/MatthewCox/colour-valgrind
Author: Matthew Cox
Author-email: matthewcpcox@gmail.com
License: MIT
Description-Content-Type: UNKNOWN
Keywords: valgrind color colour filter
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Debuggers
Classifier: Topic :: Text Processing :: Filters
Classifier: Topic :: Utilities
Requires-Dist: colorama
Requires-Dist: regex
Requires-Dist: six

A python wrapper for Valgrind that colours the output for better
readability.

Available on pypi here https://pypi.python.org/pypi/colour-valgrind/

Installation
------------

::

    pip install colour-valgrind

or from the root dir (after cloning):

::

    pip install -e .

Usage
-----

Just use ``colour-valgrind`` instead of ``valgrind`` - all args are
passed through.

``--test FILE`` has been added to feed in an existing valgrind log file
to colour.

Usage as a lib
--------------

You can also use the filter as a library function, if you're running
valgrind from another python project.

::

    from colourvalgrind import colour_valgrind

    ...

    print(colour_valgrind(valgrind_output))


