Problem: maintainers are not able to do a release

Solution: reintroduce `make dist` and `make release`
This commit is contained in:
vrde 2018-03-28 14:02:18 +02:00
parent 03c8f16475
commit 3ed3334188
No known key found for this signature in database
GPG Key ID: 6581C7C39B3D397D
1 changed files with 8 additions and 0 deletions

View File

@ -88,6 +88,14 @@ clean: clean-build clean-pyc clean-test ## Remove all build, test, coverage and
reset: check-deps ## Stop and REMOVE all containers. WARNING: you will LOSE all data stored in BigchainDB.
@$(DC) down
release: dist ## package and upload a release
twine upload dist/*
dist: clean ## builds source (and not for now, wheel package)
python setup.py sdist
# python setup.py bdist_wheel
ls -l dist
###############
# Sub targets #
###############