Coverage for scripts/make_docs.py: 0%

6 statements  

« prev     ^ index     » next       coverage.py v7.6.0, created at 2024-07-28 10:12 -0400

1"""Generate the docs.""" 

2 

3from pathlib import Path 

4import pdoc 

5import pdoc.render 

6 

7 

8here = Path(__file__).parent 

9 

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")