This repository has been archived on 2024-05-17. You can view files and clone it, but cannot push or open issues or pull requests.
build.py/_src/config.py

9 lines
243 B
Python

import configparser
"""This module is meant to store global config across the entire application.
from config import config
config.read('config.ini')
"""
config = configparser.ConfigParser(interpolation=configparser.ExtendedInterpolation())