-
Notifications
You must be signed in to change notification settings - Fork 333
Closed
Labels
Description
Proposed config system, looks like what most python packages have:
- Configuration Object that is created at module import.
- Reads the main config that ships with the repo and sets it as default.
- If another config is found in the current HOME_DIR, then use that to update difference
- If another config is found in current directory then update with these values.
- Interface to create own customised configs and save them without the need to edit config files
I know @eendebakpt has a nice basic PR in #302, and the proposed solution looks a lot like that one.