Metadata-Version: 1.0
Name: pywatch
Version: 0.3
Summary: Runs arbitrary commands if files specified to be watched change.
Home-page: http://bitbucket.org/cmheisel/pywatch/
Author: Chris Heisel
Author-email: chris@heisel.org
License: MIT
Description: pywatch
        =======
        A python clone (almost) of the Linux watch command.
        
        The pywatch.watcher.Watcher class can be told to watch a set of files,
        and given a set of commands to run whenever any of those files change.
        
        It was inspired by Ruby's ZenTest, but while it can be used for testing,
        pywatch is intended to run any command when files change... test runners
        or otherwise.
        
        See pywatch.autotest for an example of a continously running
        watch-and-runner.
        
        
        pywatch usage
        -------------
        Usage: pywatch [options] "command" file1 file2 ...
        
        Options:
        -h, --help     show this help message and exit
        -v, --verbose  Output timestamp when commands are run.
        
        Changelog
        ---------
        
        0.3
        ~~~
        * Added pywatch command line client
        
        0.2
        ~~~
        * Fixed missing os import in setup.py
        
        0.1
        ~~~
        * Initial release of python module
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
