Metadata-Version: 2.4
Name: tomul
Version: 0.0.0
Summary: Tomul is a small library for reading and writing TOML files.
Keywords: toml
Author-email: George King <george@theorypractice.dev>
Requires-Python: >=3.14
Description-Content-Type: text/markdown
License-Expression: CC0-1.0
Classifier: Programming Language :: Python :: 3
Classifier: Typing :: Typed
Requires-Dist: mypy >= 2.1.0 ; extra == "dev"
Requires-Dist: pyflakes >= 3.4.0 ; extra == "dev"
Requires-Dist: isort >= 8.0.1 ; extra == "dev"
Project-URL: Documentation, https://github.com/gwk/pithy/tree/main/tomul#readme
Project-URL: Issues, https://github.com/gwk/pithy/issues
Project-URL: Source, https://github.com/gwk/pithy
Provides-Extra: dev

# Tomul

Tomul is a small python library for reading and writing TOML files.

# Why?

Tomli-W is the mainstream way of writing TOML in Python. This module is derived from it, and I am grateful for the original.

I think that the rationale presented by Tomli-W for not defaulting to multiline strings is erroneous:
a '\r' character can just as easily be emitted by the multiline renderer.
This module does that, and simplifies some other aspects of the implementation.
It also changes the indent default to two spaces and the line wrap to 128 chars, which is unconventional but my preference.

Additionally, I am trying to minimize my third party dependencies given the rise in software supply chain attacks.
Since TOML output is a required part of the development process for this project it made sense to eliminate a dependency here.

