-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
33 lines (24 loc) · 802 Bytes
/
Makefile
File metadata and controls
33 lines (24 loc) · 802 Bytes
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
define help
Supported targets: 'install' 'clean' 'reinstall' 'build-docker' 'docker-test'
The 'install' target installs BioProfileKit build requirements into the current virutalenv.
The 'clean' target undoes the effect of 'install'
The 'reinstall' target runs the 'clean' and 'install' target
The 'build-docker' target runs docker compose
endef
export help
help:
@echo "$$help"
install:
pip install -e .
python setup.py build_ext --inplace
clean:
rm -rf build/ dist/ */*.egg-info/
find . -name ".so" -delete
find . -name ".c" -delete
find . -name "__pycache__" -type d -exec rm -rf {} +
reinstall: clean install
build-docker:
docker compose build
docker-test:
docker compose run bioprofilekit -i data/winequality-white.csv
.PHONY: install clean reinstall help build-docker docker-test