We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1f1c221 + 068cf68 commit 245cf92Copy full SHA for 245cf92
Makefile
@@ -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