Metadata-Version: 1.1
Name: lazarus
Version: 0.6.3
Summary: Restart-on-change library
Home-page: https://github.com/formwork-io/lazarus
Author: Nick Bargnesi
Author-email: nick@den-4.com
License: Apache License (2.0)
Download-URL: https://github.com/formwork-io/lazarus/releases
Description: =======
        Lazarus
        =======
        
        .. image:: https://img.shields.io/pypi/v/lazarus.svg
            :target: https://pypi.python.org/pypi/lazarus
        
        .. image:: https://img.shields.io/pypi/l/lazarus.svg
            :target: https://www.apache.org/licenses/LICENSE-2.0.txt
        
        .. image:: https://scrutinizer-ci.com/g/formwork-io/lazarus/badges/quality-score.png?b=master
            :target: https://scrutinizer-ci.com
        
        .. image:: https://img.shields.io/travis/formwork-io/lazarus.svg
            :target: https://travis-ci.org/formwork-io/lazarus
        
        A Python library to restart the process when source code changes.
        
        * Free software: Apache License, Version 2.0
        * Documentation: http://lazarus.rtfd.org.
        
        Features
        --------
        
        * Automatically restart when source changes
        * Customize when, why, and how restarts happen
        * Runs on Linux and Mac
        
        Examples
        --------
        
        Restart when any Python module rooted at ``PYTHONPATH`` changes:
        
        .. sourcecode:: python
        
            >>> import lazarus
            >>> lazarus.default()
        
        
        Same thing, but within a uWSGI container:
        
        .. sourcecode:: python
        
            >>> import lazarus
            >>> lazarus.default(restart_func=lambda: uwsgi.reload(), close_fds=False)
        
        
        
        .. :changelog:
        
        History
        -------
        
        0.6.3 2014-12-10
        ++++++++++++++++
        
        * Expanded PyPI package page.
        
        0.6.2 2014-12-09
        ++++++++++++++++
        
        * Fixed Sublime Text save workflows.
        
        0.6.1 2014-12-07
        ++++++++++++++++
        
        * Added Mac Support.
        
        0.5.1 2014-11-13
        ++++++++++++++++
        
        * Migrated GitHub repository to formwork-io
        
        0.5 2013-10-17
        ++++++++++++++
        
        * Released to PyPI
        
        0.4 2013-10-17
        ++++++++++++++
        
        * Fixed crash when multiple changes detected and first triggers restart (`#6`_)
        
        * Fixed default mode always closing FDs (`#5`_)
        
        0.3 2013-10-16
        ++++++++++++++
        
        * Added ability to specify restart command (`#1`_)
        
        * Added ability to cancel the restart (`#2`_)
        
        0.1 2013-10-15
        ++++++++++++++
        
        * First functional release.
        
        .. _#6: https://github.com/formwork-io/lazarus/issues/6
        .. _#5: https://github.com/formwork-io/lazarus/issues/5
        .. _#2: https://github.com/formwork-io/lazarus/issues/2
        .. _#1: https://github.com/formwork-io/lazarus/issues/1
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Monitoring
Classifier: Topic :: Utilities
