when your app takes a few (~ 5) config params, and the app is going to be used by non-tech users (i.e. KISS), how do you usually handle reading config options, and then passing around the params between objects/functions (multiple modules)?
Options examples: input and output dirs/fnames, verbosity level.
I generally use optparse (python) and pass around the options/params as arguments; but I'm wondering if it's more common to use a config text file that is read directly by all modules' objects (but then, isn't this like having 'global' vars?, and without anyone 'owning' the state?).
Another typical issue is unit-testing; if I want to unit-test each single module independently, a particular module may only require 1 out of the 5 config options; how do you usually decouple individual modules/objects from the rest of the app, and yet still allow it to accept 1 or 2 required params (does the unit-test framework somehow invoke or take-over the config functionality)?
My guess is that there is not a unique correct way to do this, but it'd be interesting to read about various approaches, or well-known patterns.
Thanks.
