Patch pyproject reading

setuptools_scm._integration.pyproject_reading.read_pyproject is too strict, monkeypatch it!

Without the patch, pyproject.toml [tool.setuptools-scm] section is missing, raises LookupError.

Warning

tool_name ordering

tool_name requires 1st [tool.x] section to be the package name, in this case, drain-swamp. e.g. [tool.drain-swamp] section

CHANGES

  • tool_name (str -> str | Sequence[str]) from “setuptools-scm” to [“drain-swamp”, “pipenv-unlock”]

  • the tool_name becomes the first element

  • combines contents of sections

See also

setuptools-scm config

drain_swamp.monkey.patch_pyproject_reading.__all__: tuple[str, str] = ("ReadPyproject", "ReadPyprojectStrict")

Module exports

drain_swamp.monkey.patch_pyproject_reading.log: logging.Logger

module level logger

drain_swamp.monkey.patch_pyproject_reading.is_module_debug: bool = False

Turn on during debugging

class drain_swamp.monkey.patch_pyproject_reading.ReadPyproject

Do not confine data fields. Accept whatever the section(s) contains.

update(mixed_target, d_other, key_name: str | None = None, key_value: str | None = None)

Update a ReadPyprojectBase subclass instance. Which is either a dict or a list[dict].

For list[dict] also supply a key / value pair. So know which dict to update.

Parameters:
  • mixed_target (dict[str, Any] | collections.abc.Sequence[dict[str, Any]]) – parent dict

  • d_other (dict[str, Any]) – dict. Update parent

  • key_name (str | None) – None if not a collections.abc.Sequence[dict]. To identify which dict to update, a known dict key is searched for.

  • key_value (str | None) – None if not a collections.abc.Sequence[dict]. To identify which dict to update, a known dict key / value pair are used to find a match.

class drain_swamp.monkey.patch_pyproject_reading.ReadPyprojectStrict

Confine data fields to acceptable by setuptools_scm._config.Configuration.

update(d_target, d_other, key_name: str | None = None, key_value: str | None = None)

Confine to only setuptools_scm._config.Configuration data fields.

Parent cannot be a list[dict].

Parameters:
  • d_target (dict[str, Any]) – parent dict

  • d_other (dict[str, Any]) – dict. Update parent

  • key_name (str | None) – Default None. Ignored

  • key_value (str | None) – Default None. Ignored