Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,8 @@ run_build:
deploy:
pipenv run python -m twine upload -r "pypi" --config-file .pypirc 'dist/*'

.PHONY: precommit test coverage run_build deploy
generate-api-docs:
doxygen Doxyfile
moxygen --output docs/api.md docs/xml

.PHONY: precommit test coverage run_build deploy generate-api-docs
1 change: 1 addition & 0 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ build = "*"
twine = "*"
pre-commit = "*"
exceptiongroup = "*" # Python 3.9 & 3.10 compatibility with pytest
doxypypy = "*" # For generating API documentation
Loading