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