sphinx-autodoc-toml¶
Welcome to the documentation for sphinx-autodoc-toml, a Sphinx extension that enables you to embed documentation directly within your TOML configuration files using a special doc-comment syntax.
For Contributors
Overview¶
Modern Python projects rely heavily on pyproject.toml for configuration, but these files often lack proper documentation. sphinx-autodoc-toml solves this by allowing you to:
Write documentation directly next to your configuration
Embed Sphinx directives like
.. req::and.. spec::in TOML filesKeep configuration and requirements in sync
Generate beautiful documentation from your TOML files
Example¶
Here’s what a documented TOML file looks like:
[project]
name = "my-project"
version = "1.0.0"
#: Documentation for the project dependencies.
#:
#: .. spec:: All dependencies MUST be pinned.
#: :id: S_DEPS_001
[project.dependencies]
flask = "==3.0.0"
And here’s how you include it in your documentation:
.. autodoc-toml:: ../pyproject.toml
Features¶
TOML-Doc Specification: A formal syntax for doc-comments in TOML
Sphinx Integration: Seamlessly integrates with Sphinx documentation
Requirements Tracking: Works with
sphinx-needsfor requirements managementType-Safe: Full type annotations and mypy support
Well-Tested: Comprehensive test suite with high coverage