Patch pyproject reading

From setuptools-scm (MIT)

class drain_swamp.monkey.pyproject_reading.TOML_RESULT
drain_swamp.monkey.pyproject_reading.TOML_RESULT: dict[str, Any]

TOML dict

class drain_swamp.monkey.pyproject_reading.TOML_LOADER
drain_swamp.monkey.pyproject_reading.TOML_LOADER: collections.abc.Callable[[str], TOML_RESULT]

A function that takes raw TOML str and converts into a TOML dict

drain_swamp.monkey.pyproject_reading.__all__: tuple[str, str, str, str] = ("TOML_LOADER", "TOML_RESULT", "read_toml_content",    "load_toml_or_inline_map")

Module exports

drain_swamp.monkey.pyproject_reading.load_toml_or_inline_map(data)

Load toml data - with a special hack if only an inline map is given

This is a verified, in the unittest, inline map

'{project = {name = "proj", version = "0.0.1"}}'
Parameters:

data (Any | None) – Data read from a toml file

Returns:

toml data as a dict

Return type:

dict[str, Any]

drain_swamp.monkey.pyproject_reading.read_toml_content(path, default=None)

Read a file if not found can return default. If found load file data as TOML

Parameters:
Returns:

TOML as a dict

Return type:

drain_swamp.monkey.pyproject_reading.TOML_RESULT

Raises: