1
0
mirror of https://github.com/enpaul/kodak.git synced 2025-09-18 21:21:59 +00:00

Remove unused docs infrastructure

This commit is contained in:
2021-10-28 19:52:01 -04:00
parent 25ef2c279e
commit fc658d07dd
7 changed files with 5 additions and 337 deletions

View File

@@ -24,12 +24,7 @@ clean-py:
rm --recursive --force ./*.egg-info
find ./$(PROJECT) -type d -name __pycache__ -prune -exec rm --recursive --force {} \;
clean-docs:
rm --recursive --force docs/_build
rm --force docs/$(PROJECT)*.rst
rm --force docs/modules.rst
clean: clean-tox clean-py clean-docs ## Clean temp build/cache files and directories
clean: clean-tox clean-py ## Clean temp build/cache files and directories
rm --force ./*db*
prep:
@@ -47,9 +42,6 @@ test: clean-tox prep ## Run the project testsuite(s)
publish: clean test wheel source ## Build and upload to pypi (requires $PYPI_API_KEY be set)
@poetry publish --username __token__ --password $(PYPI_API_KEY)
docs: clean-docs ## Build the documentation using Sphinx
poetry run tox -e docs
dev: ## Create local dev environment
poetry install --remove-untracked
poetry run pre-commit install