The seedbox.options Module

Handles configuration options.

Defines all the common configurations for the application, and then manages loading all Options for system.

seedbox.options.list_opts()

Returns a list of oslo_config options available in the library.

The returned list includes all oslo_config options which may be registered at runtime by the library.

Each element of the list is a tuple. The first element is the name of the group under which the list of elements in the second element will be registered. A group name of None corresponds to the [DEFAULT] group in config files.

The purpose of this is to allow tools like the Oslo sample config file generator to discover the options exposed to users by this library.

Returns:a list of (group_name, opts) tuples