Metadata-Version: 2.1
Name: ems-config
Version: 0.0.3
Summary: Common configuration utilities for EMS projects
Home-page: https://gitlab.com/thedirtyfew/utilities/ems-config
Author: Emil Haldrup Eriksen
Author-email: emil.h.eriksen@gmail.com
License: MIT
Description: # How to?
        
        Create a `config.py` file in your repository with contents like this,
        
            from ems_config import parse_config
            
            config = parse_config()
            # Parse config into python variables (optional).
            URL = config["DEFAULT"]["URL"]
            
        along with an example file `config.ini.example` that contains an example of the configuration,
        
            [DEFAULT]
            URL = http://google.com
            
        You can then use the configuration in other python files like this,
        
            from config import URL
            print(URL)  # do stuff with the URL
Platform: UNKNOWN
Requires-Python: >=3
Description-Content-Type: text/markdown
