We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents db68e1e + 51f6e91 commit 8f66a36Copy full SHA for 8f66a36
Makefile
@@ -28,4 +28,8 @@ run_build:
28
deploy:
29
pipenv run python -m twine upload -r "pypi" --config-file .pypirc 'dist/*'
30
31
-.PHONY: precommit test coverage run_build deploy
+generate-api-docs:
32
+ doxygen Doxyfile
33
+ moxygen --output docs/api.md docs/xml
34
+
35
+.PHONY: precommit test coverage run_build deploy generate-api-docs
Pipfile
@@ -23,3 +23,4 @@ build = "*"
23
twine = "*"
24
pre-commit = "*"
25
exceptiongroup = "*" # Python 3.9 & 3.10 compatibility with pytest
26
+doxypypy = "*" # For generating API documentation
0 commit comments