Coverage for scripts/make_docs.py: 0%
8 statements
« prev ^ index » next coverage.py v7.6.1, created at 2025-07-22 06:43 -0400
« prev ^ index » next coverage.py v7.6.1, created at 2025-07-22 06:43 -0400
1"""Generate the docs."""
3from pathlib import Path
4import pdoc
5import pdoc.render
7print("Generating docs...")
8here = Path(__file__).parent
10pdoc.render.configure(
11 docformat="google",
12 footer_text="overturetoosm",
13 favicon="https://whubsch.github.io/overturetoosm/favicon.ico",
14 logo="https://whubsch.github.io/overturetoosm/logo.svg",
15)
16pdoc.pdoc("src/overturetoosm", output_directory=here.parent / "docs")
17print("Done!")