-
Notifications
You must be signed in to change notification settings - Fork 78
/
Makefile
44 lines (34 loc) · 1.16 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Makefile for easier installation and cleanup.
#
# Uses self-documenting macros from here:
# http://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
PACKAGE=sktime_dl
MAINT_DIR = './maint_tools/'
.PHONY: help cover dist venv
.DEFAULT_GOAL := help
help:
@grep -E '^[0-9a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) |\
awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-15s\033[0m\
%s\n", $$1, $$2}'
release: ## Make a release
python $(MAINT_DIR)/make_release.py
install: ## Install for the current user using the default python command
python setup.py build_ext --inplace && python setup.py install --user
test: ## Run unit tests
pytest --cov-report html --cov=sktime_dl --showlocals --durations=20 --pyargs $(PACKAGE)
lint: ## Run linting
$(MAINT_DIR)/linting.sh
clean: ## Clean build dist and egg directories left after install
rm -rf ./dist
rm -rf ./build
rm -rf ./pytest_cache
rm -rf ./htmlcov
rm -rf ./$(PACKAGE).egg-info
rm -rf ./cover
rm -rf $(VENV_DIR)
rm -f MANIFEST
rm -f ./$(PACKAGE)/*.so
find . -type f -iname '*.pyc' -delete
find . -type d -name '__pycache__' -empty -delete
dist: ## Make Python source distribution
python setup.py bdist_wheel