In ruby framework, I can create custom settings like, ``` { "my_custom_plugin": { "foo": true, "bar": false } } ``` and access them in plugin, ``` def foo_enabled? settings['my_custom_plugin']['foo'] end ``` how can it be done in python framework?