forked from mwilliamson/python-vendorize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile
42 lines (30 loc) · 744 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
.PHONY: test
test:
sh -c '. _virtualenv/bin/activate; py.test tests'
.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