Metadata-Version: 1.1
Name: intp
Version: 0.1.2
Summary: Simple meta interpolation
Home-page: https://github.com/jjmurre/intp
Author: Jan Murre
Author-email: jan.murre@catalyz.nl
License: BSD
Description: 
        intp
        -------------
        Simple meta interpolation.
        From an ini file with variables, we do interpolation
        into another ini file.
        
        This is useful for generating configuration files.
        
        The interpolation format:
        
        ```
        From:
        [section]
        name = value
        ```
        
        We interpolate into:
        
        ```
        [config]
        attribute = {section.name}
        ```
        
        Resulting in:
        
        ```
        [config]
        attribute = value
        ```
        
        
Platform: any
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
