Skip to content

Commit 068cf68

Browse files
committed
makefile
1 parent c04e608 commit 068cf68

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Makefile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
.PHONY: help
2+
3+
help:
4+
@fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//'
5+
6+
clean: ## remove python cache files
7+
find . -name '__pycache__' | xargs rm -rf
8+
find . -name '*.pyc' -delete
9+
rm -rf build
10+
rm -rf dist
11+
rm -rf .pytest_cache
12+
rm -rf .coverage
13+
14+
version: ## dipsplay software version
15+
@python3 -c "import ccy; print(ccy.__version__)"

0 commit comments

Comments
 (0)