module documentation

Utilities for dealing with project configuration.

Class ConfigSection A section of a config file.
Class IniConfigSection A section of an INI config file.
Class TomlConfigSection A section of a TOML config file.
Function find_config_file Finds the first instance of a config file in a prefix of path.
Constant _CONFIG_FILENAMES Undocumented
Type Variable _ConfigSectionT Undocumented
def find_config_file(path): (source)

Finds the first instance of a config file in a prefix of path.

_CONFIG_FILENAMES: tuple[str, ...] = (source)

Undocumented

Value
('pyproject.toml', 'setup.cfg')
_ConfigSectionT = (source)

Undocumented

Value
TypeVar('_ConfigSectionT',
        bound='ConfigSection')