1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
PYTHON ?= python
clean:
$(PYTHON) setup.py clean
rm -rf dist build bin docs/build docs/source/generated *.egg-info
-find . -name '*.pyc' -delete
-find . -name '__pycache__' -type d -delete
release-pypi:
# avoid upload of stale builds
test ! -e dist
$(PYTHON) setup.py sdist bdist_wheel
twine upload dist/*
update-buildsupport:
git subtree pull \
-m "Update DataLad build helper" \
--squash \
--prefix _datalad_buildsupport \
https://github.com/datalad/datalad-buildsupport.git \
master
|