From 0cdd23edcffe4b49f72ce7bdd8df695c946ea99c Mon Sep 17 00:00:00 2001 From: nvbn Date: Thu, 7 May 2015 14:16:07 +0200 Subject: [PATCH] Use wheel --- release.py | 2 +- requirements.txt | 1 + setup.cfg | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 setup.cfg diff --git a/release.py b/release.py index e22209b6..85af9285 100755 --- a/release.py +++ b/release.py @@ -28,4 +28,4 @@ call('git commit -am "Bump to {}"'.format(version), shell=True) call('git tag {}'.format(version), shell=True) call('git push', shell=True) call('git push --tags', shell=True) -call('python setup.py sdist upload', shell=True) +call('python setup.py sdist bdist_wheel upload', shell=True) diff --git a/requirements.txt b/requirements.txt index 1a6161ba..78b43ee1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ pytest mock pytest-mock +wheel diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 00000000..2a9acf13 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal = 1