Skip to content

Instantly share code, notes, and snippets.

@rvasilevsk
Created November 6, 2022 19:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rvasilevsk/b94858774934bce97e1486d6e10a2cc1 to your computer and use it in GitHub Desktop.
Save rvasilevsk/b94858774934bce97e1486d6e10a2cc1 to your computer and use it in GitHub Desktop.
[Makefile] pdoc3
PY_DOCS_PACKAGES=pyperclip tabulate
## docs ###############################################################################################################
.PHONY: docs
docs:
pdoc3 --html -o docs -f $(PY_DOCS_PACKAGES)
#cp logo.png docs/
.PHONY: live
live:
pdoc3 --http : $(PY_DOCS_PACKAGES)
.PHONY: clean-docs
clean-docs:
rm -rf docs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment