Metadata-Version: 1.1
Name: service
Version: 0.1.1
Summary: Easy implementation of Unix background services.
Home-page: https://github.com/torfuspolymorphus/service
Author: Florian Brucker
Author-email: mail@florianbrucker.de
License: MIT
Description: This module makes it easy to write Unix services, i.e. background
        processes ("daemons") that are controlled by a foreground application
        (e.g. a console script).
        
        The package is built around the python-daemon_ module, which provides
        the means for creating well-behaved daemon processes. The ``service``
        package adds a control infrastructure for easily starting, stopping,
        querying and killing the background process from a foreground
        application.
        
        .. _python-daemon: https://pypi.python.org/pypi/python-daemon
Keywords: service,daemon
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
