jrnl/Makefile
Jonathan Wren 8c0c95d1f6 Poetry updates
update version and author emails
update makefile to use poetry for more things
remove faulty conditional
2020-04-10 11:51:55 -07:00

37 lines
718 B
Makefile

# A Makefile for commands I run frequently:
clean:
rm -rf dist
rm -rf _static
rm -rf jrnl.egg-info
rm -rf _build
rm -rf _sources
rm -rf _static
rm -rf site/
rm -f *.html
html:
poetry run mkdocs serve
# Build GitHub Page from docs
docs:
poetry run mkdocs gh-deploy
format: ## check style with flake8
poetry run black features jrnl
lint: ## check style with flake8
poetry run flake8 jrnl features --ignore E501
test: ## Run behave tests
poetry run behave
dist: clean ## builds source and wheel package
poetry build
release: dist ## package and upload a release
poetry publish
poetry run mkdocs gh-deploy
install: clean ## install the package to the active Python's site-packages
poetry install