-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
64 lines (45 loc) · 1.06 KB
/
Copy pathMakefile
File metadata and controls
64 lines (45 loc) · 1.06 KB
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
54
55
56
57
58
59
60
61
62
63
64
.PHONY: build install
requirements:
python -m pip install --upgrade pip
python -m pip install scikit-build
python -m pip install -r requirements.txt
# alternatively
# conda install -c conda-forge --file requirements.txt
# python -m pip install -r requirements-pip.txt
# requirements-mamba:
# mamba install --file requirements.txt
# requirements-conda:
# conda install --file requirements.txt
build:
python -m build -o wheelhouse
install:
pip install .
install-dev:
pip install --editable .
dev:
python -m pip install --upgrade -r requirements-dev.txt
dev-mamba:
mamba install --file requirements-dev.txt
dev-conda:
conda install --file requirements-dev.txt
docs:
pdoc --output-dir docs/ --html --force pyfocusr
mv docs/pyfocusr/* docs/
rm -rf docs/pyfocusr
test:
set -e
pytest
lint:
set -e
isort -c .
black --check --config pyproject.toml .
autoformat:
set -e
isort .
black --config pyproject.toml .
clean:
rm -rf build dist *.egg-info
coverage:
coverage run -m pytest
# Make the html version of the coverage results.
coverage html