pyo3_stub_gen/docgen/mod.rs
1//! Documentation generation module for pyo3-stub-gen
2//!
3//! This module handles generating Sphinx-compatible API reference documentation
4//! from the rich type metadata that pyo3-stub-gen possesses.
5
6pub mod builder;
7pub mod config;
8pub mod default_parser;
9pub mod export;
10pub mod ir;
11pub mod link;
12pub mod render;
13pub mod types;
14pub mod util;
15
16pub use config::DocGenConfig;
17pub use ir::DocPackage;