From 3ed33341882f4ee59c380129cd7492257238bfde Mon Sep 17 00:00:00 2001 From: vrde Date: Wed, 28 Mar 2018 14:02:18 +0200 Subject: [PATCH] Problem: maintainers are not able to do a release Solution: reintroduce `make dist` and `make release` --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Makefile b/Makefile index ae52b963..54df7a75 100644 --- a/Makefile +++ b/Makefile @@ -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 # ###############