Metadata-Version: 1.0
Name: configpy
Version: 0.5
Summary: JSON configuration file parser
Home-page: http://jkeyes.github.com/configpy/
Author: John Keyes
Author-email: configpy@keyes.ie
License: BSD
Description: 
        configpy is a JSON configuration file reader with support
        for variable look-ahead and look-behind, expressions, and
        comments.
        
        Example
        -------
        
        ::
        
        config_json = """
        /* Some example configuration items */
        {
        "a": 10,
        "b": 2,
        "c": "{{ ${a} / ${b} }}",
        "d": "{{ ${c} * ${a} }}",
        "e": "{{ ${d} + 50 }}",
        "f": "{{ ${e} - 25 }}",
        "g": "'some text = {{ ${a} / ${b} }}'"
        }
        """
        
        config = Config(config_json)
        10 == config.a
        2 == config.b
        5 == config.c
        50 == config.d
        100 == config.e
        75 == config.f
        "some text = 5" == config.g
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
