persistent-docker / scripts /build-clean-docs.sh
Anthony Truchet
feat: add quality tooling around Poetry
aed86da
Raw
History Blame Contribute Delete
223 Bytes
#!/usr/bin/env sh
DOCS_GENERATED_API_SRC=src/athai
DOCS_SRC=doc
DOCS_GENERATED_API_DST=doc/_autosummary
DOCS_DST=dist/doc
rm -rf $DOCS_DST
rm -rf $DOCS_GENERATED_API_DST
poetry run sphinx-build -E -a $DOCS_SRC $DOCS_DST