Merge pull request #2160 from vrde/reintroduce-dist-and-release

Problem: maintainers are not able to do a release
This commit is contained in:
Troy McConaghy 2018-03-28 14:10:46 +02:00 committed by GitHub
commit e3be475ebd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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. reset: check-deps ## Stop and REMOVE all containers. WARNING: you will LOSE all data stored in BigchainDB.
@$(DC) down @$(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 # # Sub targets #
############### ###############