From 3129a88d665714b62faf17b5992511aab2696373 Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Sat, 2 Jan 2021 17:58:06 +0200
Subject: [PATCH] Remove fabfile.

I'm going to replace it with GitLab CI.
---
 fabfile.py | 23 -----------------------
 1 file changed, 23 deletions(-)
 delete mode 100644 fabfile.py

diff --git a/fabfile.py b/fabfile.py
deleted file mode 100644
index 62c514c..0000000
--- a/fabfile.py
+++ /dev/null
@@ -1,23 +0,0 @@
-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/*''')
-- 
GitLab