Metadata-Version: 1.1
Name: appconfig
Version: 0.2dev
Summary: An easy to use config file wrapper.
Home-page: http://mweb.github.io/appconfig
Author: Mathias Weber
Author-email: mathew.weber@gmail.com
License: BSD
Description: appconfig
        =========
        
        `appconfig` is a python module that simplifies the usage of ini based config
        files. It uses the Python ConfigParser module. The advantage of the appconfig
        module it that it allows defining default values for all config parameters and
        to provide a description of each parameter. While writing the config file back
        it will add comments above all of the config values and since we have default
        values we never need to check if a value is defined.
        
        Features
        --------
        
        The `appconfig` module offers the following features:
        
        * default values for config values
        * config file generation with parameter description
        * automatic type conversion and type checks for config values
        * config directory handling
        
        
        
        
        Changelog
        =========
        
        0.2
        ---
        
        * rename get_s function to get
        * improved test coverage
        * fix for load_default on windows
        * added compatibility for Python 3.x
        
        0.1 (2013-06-19)
        ----------------
        
        * Initial Version
        
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
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
