-
Notifications
You must be signed in to change notification settings - Fork 6
/
Makefile
executable file
·41 lines (31 loc) · 1.06 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
PIP := $(shell command -v pip3 2> /dev/null || command which pip 2> /dev/null)
PYTHON := $(shell command -v python3 2> /dev/null || command which python 2> /dev/null)
.PHONY: install dev-install install_conda dev-install_conda tests doc docupdate
pipcheck:
ifndef PIP
$(error "Ensure pip or pip3 are in your PATH")
endif
@echo Using pip: $(PIP)
pythoncheck:
ifndef PYTHON
$(error "Ensure python or python3 are in your PATH")
endif
@echo Using python: $(PYTHON)
install:
make pipcheck
$(PIP) install -r requirements.txt && $(PIP) install .
dev-install:
make pipcheck
$(PIP) install -r requirements-dev.txt && $(PIP) install -e .
install_conda:
conda env create -f environment.yml && source activate pylops-gpu && pip install .
dev-install_conda:
conda env create -f environment-dev.yml && source activate pylops-gpu && pip install -e .
tests:
make pythoncheck
$(PYTHON) setup.py test
doc:
cd docs && rm -rf source/api/generated && rm -rf source/gallery &&\
rm -rf source/tutorials && rm -rf build && make html && cd ..
docupdate:
cd docs && make html && cd ..