Skip to content

Commit 245cf92

Browse files
authored
Merge pull request #11 from quantmind/master
makefile
2 parents 1f1c221 + 068cf68 commit 245cf92

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Makefile

+15
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)