Metadata-Version: 2.1
Name: just-config
Version: 0.2
Summary: Minimalistic library to handle configuration for the application
Home-page: http://packages.python.org/just_config
Author: Alexander Pushkarev
Author-email: alexspush@gmail.com
License: MIT
Description: # just_config
        Minimalistic library to handle configuration for the application.
        
        As for now, it will look for the configuration value in the following order:
          1.  In system environment variables.
          2.  In `default.ini` file in the current working directory
          
        ## Usage:
        ```python
        >>> from just_config.configuration import Configuration
        >>> cfg = Configuration()
        >>> cfg['test']
        'value'
        ```
        
        ## Example configuration file:
        ```ini
        [DEFAULT]
        test=value
        ```
        
        ![](https://img.shields.io/pypi/dm/pr-analyzer.svg)
        
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
