Skip to content

Commit

Permalink
Merge pull request #11 from quantmind/master
Browse files Browse the repository at this point in the history
makefile
  • Loading branch information
lsbardel authored Mar 16, 2019
2 parents 1f1c221 + 068cf68 commit 245cf92
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
.PHONY: help

help:
@fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//'

clean: ## remove python cache files
find . -name '__pycache__' | xargs rm -rf
find . -name '*.pyc' -delete
rm -rf build
rm -rf dist
rm -rf .pytest_cache
rm -rf .coverage

version: ## dipsplay software version
@python3 -c "import ccy; print(ccy.__version__)"

0 comments on commit 245cf92

Please sign in to comment.