You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
780 B
38 lines
780 B
5 years ago
|
CURRENT_SIGN_SETTING := $(shell git config commit.gpgSign)
|
||
|
|
||
|
.PHONY: clean-pyc clean-build
|
||
|
|
||
|
clean: clean-build clean-pyc
|
||
|
|
||
|
clean-build:
|
||
|
rm -fr build/
|
||
|
rm -fr dist/
|
||
|
rm -fr *.egg-info
|
||
|
|
||
|
clean-pyc:
|
||
|
find . -name '*.pyc' -exec rm -f {} +
|
||
|
find . -name '*.pyo' -exec rm -f {} +
|
||
|
find . -name '*~' -exec rm -f {} +
|
||
|
|
||
|
test:
|
||
|
py.test tests
|
||
|
|
||
|
install:
|
||
|
pip install -e .
|
||
|
|
||
|
release:
|
||
|
clean
|
||
|
python3 -m incremental.update pyhmy --rc
|
||
|
git push upstream && git push upstream --tags
|
||
|
python setup.py sdist bdist_wheel
|
||
|
twine upload dist/*
|
||
|
|
||
|
sdist:
|
||
|
clean
|
||
|
ifdef VERSION # Argument for incremental, reference: https://pypi.org/project/incremental/ .
|
||
|
python3 -m incremental.update pyhmy --$(VERSION)
|
||
|
else
|
||
|
python3 -m incremental.update pyhmy --dev
|
||
|
endif
|
||
|
python3 setup.py sdist bdist_wheel
|
||
|
ls -l dist
|