~justin-fathomdb/nova/justinsb-openstack-api-volumes

« back to all changes in this revision

Viewing changes to vendor/python-daemon/PKG-INFO

  • Committer: Jesse Andrews
  • Date: 2010-05-28 06:05:26 UTC
  • Revision ID: git-v1:bf6e6e718cdc7488e2da87b21e258ccc065fe499
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Metadata-Version: 1.0
 
2
Name: python-daemon
 
3
Version: 1.5.5
 
4
Summary: Library to implement a well-behaved Unix daemon process.
 
5
Home-page: http://pypi.python.org/pypi/python-daemon/
 
6
Author: Ben Finney
 
7
Author-email: ben+python@benfinney.id.au
 
8
License: PSF-2+
 
9
Description: This library implements the well-behaved daemon specification of
 
10
        :pep:`3143`, "Standard daemon process library".
 
11
        
 
12
        A well-behaved Unix daemon process is tricky to get right, but the
 
13
        required steps are much the same for every daemon program. A
 
14
        `DaemonContext` instance holds the behaviour and configured
 
15
        process environment for the program; use the instance as a context
 
16
        manager to enter a daemon state.
 
17
        
 
18
        Simple example of usage::
 
19
        
 
20
        import daemon
 
21
        
 
22
        from spam import do_main_program
 
23
        
 
24
        with daemon.DaemonContext():
 
25
        do_main_program()
 
26
        
 
27
        Customisation of the steps to become a daemon is available by
 
28
        setting options on the `DaemonContext` instance; see the
 
29
        documentation for that class for each option.
 
30
Keywords: daemon,fork,unix
 
31
Platform: UNKNOWN
 
32
Classifier: Development Status :: 4 - Beta
 
33
Classifier: License :: OSI Approved :: Python Software Foundation License
 
34
Classifier: Operating System :: POSIX
 
35
Classifier: Programming Language :: Python
 
36
Classifier: Intended Audience :: Developers
 
37
Classifier: Topic :: Software Development :: Libraries :: Python Modules