summaryrefslogtreecommitdiff
path: root/fabfile.py
diff options
context:
space:
mode:
Diffstat (limited to 'fabfile.py')
-rw-r--r--fabfile.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/fabfile.py b/fabfile.py
index cf0151e4..729965e2 100644
--- a/fabfile.py
+++ b/fabfile.py
@@ -30,7 +30,7 @@ def clean():
@task
def build():
- local("python setup.py sdist")
+ local("python setup.py sdist bdist_wheel")
@task
@@ -101,7 +101,7 @@ def release():
build()
print("Releasing", env.projname, "version", env.version)
local("git tag %s" % env.version)
- local("python setup.py sdist upload")
+ local("python setup.py sdist bdist_wheel upload")
local("git push --tags")