Skip to content

Commit

Permalink
Merge pull request #247 from pavdmyt/ai-generated-docstrings
Browse files Browse the repository at this point in the history
misc: convert readme to markdown, add ToC; add docstrings

#247
  • Loading branch information
pavdmyt authored Oct 19, 2024
2 parents 112b337 + dc997d1 commit 4915e61
Show file tree
Hide file tree
Showing 8 changed files with 1,107 additions and 1,560 deletions.
9 changes: 2 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ check-fmt:

.PHONY: spellcheck
spellcheck:
@cspell -c .cspell.json $(name)/*.py tests/*.py examples/*.py README.rst HISTORY.rst pyproject.toml Makefile
@cspell -c .cspell.json $(name)/*.py tests/*.py examples/*.py README.md HISTORY.rst pyproject.toml Makefile

.PHONY: clean
clean:
Expand Down Expand Up @@ -63,18 +63,13 @@ coverage: clean-pyc
rm-build:
@rm -rf build dist .egg $(name).egg-info

.PHONY: check-rst
check-rst:
@echo "$(OK_COLOR)==> Checking RST will render...$(NO_COLOR)"
@poetry run twine check dist/*

.PHONY: build
build: rm-build
@echo "$(OK_COLOR)==> Building...$(NO_COLOR)"
@poetry build

.PHONY: publish
publish: flake build check-rst
publish: flake build
@echo "$(OK_COLOR)==> Publishing...$(NO_COLOR)"
@poetry publish -u $(pypi_usr) -p $(pypi_pwd)

Expand Down
Loading

0 comments on commit 4915e61

Please sign in to comment.