From 1636860e480195f96b5b9a1539cb2be84ac15596 Mon Sep 17 00:00:00 2001 From: Valentin Samir Date: Sat, 23 Jul 2016 18:46:36 +0200 Subject: [PATCH] Rules to publish wheel release --- Makefile | 3 +++ setup.cfg | 2 ++ 2 files changed, 5 insertions(+) diff --git a/Makefile b/Makefile index a186ddc..68fd801 100644 --- a/Makefile +++ b/Makefile @@ -70,3 +70,6 @@ test_venv/bin/sphinx-build: test_venv docs: test_venv/bin/sphinx-build bash -c "source test_venv/bin/activate; cd docs; make html" + +publish_pypi_release: + python setup.py sdist bdist_wheel upload --sign diff --git a/setup.cfg b/setup.cfg index f1602a2..dcfa190 100644 --- a/setup.cfg +++ b/setup.cfg @@ -9,3 +9,5 @@ tag_svn_revision = 0 [aliases] test=pytest +[bdist_wheel] +universal = 1