From 977885967d320bc9d853059d3ee75e3a121d8e63 Mon Sep 17 00:00:00 2001 From: Ben Lopatin Date: Mon, 13 Jun 2016 11:41:28 -0400 Subject: [PATCH] Update makefile --- Makefile | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 73f9bdf..86decf1 100644 --- a/Makefile +++ b/Makefile @@ -37,13 +37,15 @@ test-all: ## Run all tox test environments, parallelized check: clean-build clean-pyc clean-test lint test-coverage -release: clean ## Uploads new source and wheel distributions (cleans first) - python setup.py sdist upload - python setup.py bdist_wheel upload +build: clean ## Create distribution files for release + python setup.py sdist bdist_wheel -dist: clean ## Creates new source and wheel distributions (cleans first) +release: build ## Create distribution files and publish to PyPI + python setup.py check -r -s + twine upload dist/* + +sdist: clean ##sdist Create source distribution only python setup.py sdist - python setup.py bdist_wheel ls -l dist api-docs: ## Build autodocs from docstrings