This commit is contained in:
Loup-Garou911XD 2024-03-13 03:16:33 +05:30
parent 442a392f47
commit b94a3a13e6
2 changed files with 5 additions and 1 deletions

View File

@ -278,6 +278,7 @@ ctx.filter_file_extensions = {
'.xcsettings',
'.xcstrings',
'.filters',
'.rst',
}
# ELSE files with these extensions will NOT be filtered.

View File

@ -561,10 +561,13 @@ def gen_docs_pdoc() -> None:
print(f'{Clr.BLU}Generating documentation...{Clr.RST}')
batools.docs.generate_pdoc(projroot=str(pcommand.PROJROOT))
def gen_docs_sphinx():
def gen_docs_sphinx() -> None:
import batools.docs
batools.docs.generate_sphinxdoc()
def list_pip_reqs() -> None:
"""List Python Pip packages needed for this project."""
from batools.build import get_pip_reqs