Metadata-Version: 1.0
Name: repoze.configuration
Version: 0.2
Summary: A configuration system using YAML and entry points
Home-page: http://www.repoze.org
Author: Agendaless Consulting
Author-email: repoze-dev@lists.repoze.org
License: BSD-derived (http://www.repoze.org/LICENSE.txt)
Description: repoze.configuration README
        ===========================
        
        ``repoze.configuration`` is a package that software developers can use
        as a configuration system.  It allows the use of ``YAML`` as a
        configuration language.  Application-defined "directives" can be
        plugged in to ``repoze.configuration`` using one or more Python
        setuptools entry points.  For example, you could make sense out of the
        following YAML using repoze.configuration and a custom "appsettings"
        directive::
        
        --- !appsettings
        port_number = 8080
        reload_templates = true
        
        --- !include
        filename = anotherfile.yml
        
        Please see docs/index.rst for more documentation.
        
        
        repoze.configuration Changelog
        ==============================
        
        0.2 (2009-07-13)
        ----------------
        
        - Trying to read any directive section that wasn't a YAML mapping
        caused a TypeError (e.g. ``construct_scalar takes no argument
        'deep'``).
        
        0.1 (2009-06-22)
        ----------------
        
        - Initial release.
        
Keywords: repoze configuration
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
