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