forked from gattia/template_python_library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
63 lines (46 loc) · 1.1 KB
/
Makefile
File metadata and controls
63 lines (46 loc) · 1.1 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
.PHONY: build install
requirements:
python -m pip install -r requirements.txt
requirements-mamba:
mamba install --file requirements.txt
requirements-conda:
conda install --file requirements.txt
build:
python -m build -o wheelhouse
install:
pip install .
#python setup.py install
install-dev:
pip install --editable .
# below is specifically for building / forcing building of cython code.
# build-cython:
# python setup.py build_ext -i --force
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 template_python_library
mv docs/template_python_library/* docs/
rm -rf docs/template_python_library
# {REPLACE}
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 template_python_library.egg-info
#{REPLACE}
coverage:
coverage run -m pytest
# Make the html version of the coverage results.
coverage html