2024-11-24 13:37:43 -06:00
|
|
|
# -*- coding: utf-8; -*-
|
|
|
|
"""
|
|
|
|
Tasks for Wutta Demo
|
|
|
|
"""
|
|
|
|
|
|
|
|
import os
|
|
|
|
import shutil
|
|
|
|
|
|
|
|
from invoke import task
|
|
|
|
|
|
|
|
|
|
|
|
@task
|
|
|
|
def release(c):
|
|
|
|
"""
|
|
|
|
Release a new version of Wutta Demo
|
|
|
|
"""
|
2024-11-24 20:55:51 -06:00
|
|
|
if os.path.exists('dist'):
|
|
|
|
shutil.rmtree('dist')
|
2024-11-24 13:37:43 -06:00
|
|
|
|
2024-11-24 20:55:51 -06:00
|
|
|
c.run('python -m build --sdist')
|
|
|
|
c.run('twine upload dist/*')
|