Metadata-Version: 1.1
Name: gaffer
Version: 0.1.1
Summary: simple system process manager
Home-page: http://github.com/benoitc/gaffer
Author: Benoit Chesneau
Author-email: benoitc@e-engura.org
License: BSD
Description: Gaffer
        ======
        
        .. image:: https://secure.travis-ci.org/benoitc/gaffer.png?branch=master
            :target: http://travis-ci.org/benoitc/gaffer
        
        Simple process management
        
        Gaffer is a set of Python modules and tools to easily maintain and
        interract with your processes.
        
        Features
        --------
        
            - Framework to manage and interract your processes
            - Fully evented. Use the libuv event loop using the
              `pyuv library <https://pyuv.readthedocs.org>`_
            - Server and console tool to manage your process via HTTP on TCP and
              UNIX sockets.
            - HTTPS supported
            - Possibility to interract with STDIO:
                - websocket stream to write to stdin and receive from stdout
                  (muliple clients can write at the same time)
                - subscribe on stdout/stderr feed via longpolling, continuous
                  stream, eventsource or websockets
                - write your own client/server using the framework
            - Subscribe to process statistics per process or process templates
              and get them in quasi RT.
            - Flapping: handle cases where your processes crash too much
            - Easily extensible: add your own endpoint, create your client,
              embed gaffer in your application, ...
            - Compatible with python 2.6x, 2.7x, 3.x
        
        
        Documentation
        -------------
        
        http://gaffer.readthedoc.org
        
        Installation
        ------------
        
        Gaffer requires Python superior to 2.6 (yes Python 3 is supported)
        
        To install gaffer using pip you must make sure you have a
        recent version of distribute installed::
        
            $ curl -O http://python-distribute.org/distribute_setup.py
            $ sudo python distribute_setup.py
            $ easy_install pip
        
        
        To install from source, run the following command::
        
            $ git clone https://github.com/benoitc/gaffer.git
            $ cd gaffer && pip install -r requirements.txt
        
        License
        -------
        
        gaffer is available in the public domain (see UNLICENSE). gaffer is also
        optionally available under the MIT License (see LICENSE), meant
        especially for jurisdictions that do not recognize public domain
        works.
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.0
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Topic :: System :: Boot
Classifier: Topic :: System :: Monitoring
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: Software Development :: Libraries
