diff --git a/fabfile.py b/fabfile.py index cfa80ead5..02a2110d9 100644 --- a/fabfile.py +++ b/fabfile.py @@ -32,6 +32,10 @@ def make(): local('pip install -r requirements.txt') local('python setup.py build_ext --inplace') +def sdist(): + with virtualenv(VENV_DIR): + with lcd(path.dirname(__file__)): + local('python setup.py sdist') def clean(): with lcd(path.dirname(__file__)):