Coverage for scripts/make_docs.py: 0%

6 statements  

« prev     ^ index     » next       coverage.py v7.6.0, created at 2024-07-27 13:56 -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="atlus", 

13 favicon="https://whubsch.github.io/atlus_py/atlus_fav.svg", 

14 logo="https://whubsch.github.io/atlus_py/logo_black.png", 

15) 

16pdoc.pdoc("src/atlus", output_directory=here.parent / "docs")