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
|
PYTHON := python
project:=mergedeep
version:=$(shell $(PYTHON) -c 'import sys, os; sys.path.insert(0, os.path.abspath(".")); print(__import__("${project}").__version__)')
.PHONY: list
list help:
@make -pq | awk -F':' '/^[a-zA-Z0-9][^$$#\/\t=]*:([^=]|$$)/ {split($$1,A,/ /);for(i in A)print A[i]}' | sed '/Makefile/d' | sort
.PHONY: format
format:
@$(PYTHON) -m black *.py ./mergedeep/*.py -l 120
.PHONY: build
build: clean
@rm -rf ./dist/*
@$(PYTHON) setup.py sdist bdist_wheel
.PHONY: test-setup
test-setup:
@pyenv install -s 3.6.10
@pyenv install -s 3.7.7
@pyenv install -s 3.8.2
@pyenv install -s 3.9.1
.PHONY: test
test: test-setup
@pyenv local 3.6.10 3.7.7 3.8.2 3.9.1
@$(PYTHON) -m tox
.PHONY: clean
clean:
@rm -rf ./dist ./build ./*.egg-info ./htmlcov
@find . -name '*.pyc' -delete
@find . -name '__pycache__' -delete
.PHONY: check
check:
@twine check dist/*
.PHONY: upload-test
upload-test: test clean build check
@twine upload --repository-url https://test.pypi.org/legacy/ dist/*
.PHONY: tag
tag:
ifeq (,$(shell git tag --list | grep "${version}"))
@git tag "v${version}"
endif
.PHONY: release
release: tag
ifdef version
@curl -XPOST \
-H "Authorization: token ${GITHUB_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
"https://api.github.com/repos/clarketm/${project}/releases" \
--data "{\"tag_name\": \"v${version}\",\"target_commitish\": \"master\",\"name\": \"v${version}\",\"draft\": false,\"prerelease\": false}"
endif
.PHONY: upload
publish upload: test clean build check
@twine upload dist/*
|