Add docs config

Update setup remove ipympl dependency
Update Project Name
add build to Makefile
This commit is contained in:
2021-05-11 19:11:03 +02:00
parent 79190ef2e1
commit d46f544466
6 changed files with 37 additions and 11 deletions

View File

@@ -1,6 +1,6 @@
SHELL := /bin/bash
.DEFAULT_GOAL := help
.PHONY: coverage deps help lint push test
.PHONY: coverage deps help lint push test doc build
coverage: ## Run tests with coverage
coverage erase
@@ -24,6 +24,10 @@ test: ## Run tests
doc: ## Update documentation
make -C docs --makefile=Makefile html
build: ## Build package
rm -fr dist/*
python setup.py sdist bdist_wheel
doc-clean: ## Update documentation
make -C docs --makefile=Makefile clean