Skip to content
Snippets Groups Projects
Commit 3129a88d authored by nimrod's avatar nimrod
Browse files

Remove fabfile.

I'm going to replace it with GitLab CI.
parent 0873dfc6
No related branches found
No related tags found
No related merge requests found
from __future__ import (absolute_import, division, print_function,
unicode_literals)
from fabric.api import (local, task, sudo, env, settings)
env.use_ssh_config = True
@task
def build():
'''Build wheel.'''
local('''python setup.py sdist bdist_wheel''')
@task
def clean():
'''Clean.'''
local('''rm -rf *.pyc *.egg-info build dist''')
@task
def upload():
build()
local('''twine upload -s dist/*''')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment