Metadata-Version: 1.1
Name: affinitic.docpyflakes
Version: 0.1
Summary: Pyflakes your doctest
Home-page: http://svn.affinitic.be/python/affinitic.docpyflakes
Author: Affinitic
Author-email: jfroche@affinitic.be
License: GPL
Description: Introduction
        ============
        
        Check your doctest for various errors. Depends on pyflakes (http://pypi.python.org/pypi/pyflakes).
        
        Usage example::
        
            docpyflakes yourdoctext.txt
        
        This package has an entry point for buildout to create a script via::
        
            [buildout]
            parts = ...
                    scripts
        
            [scripts]
            recipe = zc.recipe.egg:scripts
            eggs = affinitic.docpyflakes
        
        VIM
        ===
        
        My vim configuration integration to run docpyflakes while I am working on my doctest and handle errors quickly::
        
            fun! PyflakesForDocTest()
                let tmpfile = tempname()
                execute "w" tmpfile
                execute "set makeprg=(docpyflakes\\ " . tmpfile . "\\\\\\|sed\\ s@" . tmpfile ."@%@)"
                make
                cw
                redraw!
            endfun
        
            autocmd BufWrite *.{txt} :call PyflakesForDocTest()
        
        EMACS
        =====
        
        Learn VIM
        
        Changelog
        =========
        
        0.1 (2010-02-19)
        ----------------
        
        - Initial release
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python
