-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmakefile
54 lines (37 loc) · 972 Bytes
/
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
54
.PHONY: test
test: test-pyflakes test-pytest README.rst
.PHONY: test-pyflakes
test-pyflakes:
_virtualenv/bin/pyflakes graphlayer tests
.PHONY: test-pytest
test-pytest:
sh -c '. _virtualenv/bin/activate; pytest tests'
README.rst:
_virtualenv/bin/diff-doc compile README.src.rst > README.rst
.PHONY: test-all
test-all:
tox
.PHONY: upload
upload: build-dist
_virtualenv/bin/twine upload dist/*
make clean
.PHONY: build-dist
build-dist: clean
_virtualenv/bin/pyproject-build
.PHONY: clean
clean:
rm -f MANIFEST
rm -rf build dist
.PHONY: bootstrap
bootstrap: _virtualenv
_virtualenv/bin/pip install -e .
ifneq ($(wildcard test-requirements.txt),)
_virtualenv/bin/pip install -r test-requirements.txt
endif
make clean
_virtualenv:
python3 -m venv _virtualenv
_virtualenv/bin/pip install --upgrade pip
_virtualenv/bin/pip install --upgrade setuptools
_virtualenv/bin/pip install --upgrade wheel
_virtualenv/bin/pip install --upgrade build twine