-
Notifications
You must be signed in to change notification settings - Fork 14
/
Makefile
53 lines (39 loc) · 1.69 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
45
46
47
48
49
50
51
52
53
PYENV=env
PYTHON=$(PYENV)/bin/python3
NAMESPACE_DIR := ./python/
PACKAGE := hydrotools
SUBPACKAGES := _restclient[develop] nwis_client[develop] caches[develop] nwm_client_new[develop] events[develop] metrics[develop] nwm_client[develop]
# discard `extras_require` qualifies from subpackage names (e.g. [develop])
SUBPACKAGES_WITHOUT_EXTRA_REQUIRE = $(shell echo $(SUBPACKAGES) | sed 's|\[[^][]*\]||g')
# relative path to subpackages (e.g. ./python/nwis_client)
SUBPACKAGES_PATHS := $(addprefix $(NAMESPACE_DIR), $(SUBPACKAGES))
.PHONY: help all-tests tests install uninstall develop clean
help:
@echo "HydroTools makefile commands:"
@echo " install : install all subpackages from local source code"
@echo " develop : install all subpackages in editable mode (pip -e) from local source code"
@echo " tests : run unit tests. exclude tests marked as slow"
@echo " all-tests : run all unit tests"
@echo " uninstall : uninstall all subpackages"
@echo " clean : delete python virtual environment"
@echo
@echo " utility requirements:"
@echo " pip > 21.1"
@echo " sed"
.DEFAULT_GOAL := help
tests: install
$(PYTHON) -m pytest -s -m "not slow"
all-tests: install
$(PYTHON) -m pytest -s
install: $(PYENV)/bin/activate
$(PYTHON) -m pip install $(SUBPACKAGES_PATHS)
uninstall: $(PYENV)/bin/activate
$(PYTHON) -m pip uninstall -y $(addprefix $(PACKAGE)., $(SUBPACKAGES_WITHOUT_EXTRA_REQUIRE))
develop: $(PYENV)/bin/activate
$(PYTHON) -m pip install --editable $(SUBPACKAGES_PATHS)
$(PYENV)/bin/activate:
test -d $(PYENV) || python3 -m venv $(PYENV)
$(PYTHON) -m pip install -U pip wheel setuptools build pytest
touch $(PYENV)/bin/activate
clean:
rm -rf $(PYENV)