-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
53 lines (50 loc) · 1.29 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
42
43
44
45
46
47
48
49
50
51
52
53
.PHONY: default
NAME=put
VERSION=0.0.7
PYTHON=python
PIP=$(PYTHON) -m pip
GIT=git
default:
@echo "build target is required"
@exit 2
setupenv:
$(PIP) install --upgrade setuptools wheel twine tqdm pkginfo flake8 yapf pytest pytest-cov sphinx recommonmark
devinstall:
$(PIP) install -e .
sandboxinstall:
$(PIP) install -i https://test.pypi.org/simple/ $(NAME)
prodinstall:
$(PIP) install $(NAME)
uninstall:
$(PIP) uninstall -y $(NAME)
check:
$(PYTHON) -c "import $(NAME); print($(NAME).__version__); print($(NAME).__dir__())"
devcheck: devinstall check
lint:
$(PYTHON) -m flake8 .
format:
$(PYTHON) -m yapf -r -i src
$(PYTHON) -m yapf -r -i tests
version:
$(PYTHON) setup.py --version
tag:
$(GIT) tag $(VERSION)
untag:
$(GIT) tag -d $(VERSION)
clean:
@find . | grep -E "(__pycache__|\.pyc|\.pyo$\)" | xargs rm -rf
@rm -rf *.egg-info/ build/ dist/ MANIFEST .pytest_cache/
build: clean
$(PYTHON) setup.py sdist bdist_wheel
test:
$(PYTHON) setup.py test
builddoc: clean
$(PYTHON) setup.py docs
testdoc: clean
$(PYTHON) setup.py doctest
pushsandbox:
$(PYTHON) -m twine upload dist/* -r testpypi
pushprod:
@if [ "$(shell git rev-parse --abbrev-ref HEAD)" != "master" ]; then echo "must be on the master branch"; exit 3; fi
$(PYTHON) -m twine upload dist/*
publish: test tag build pushsandbox pushprod