wutta-demo/tasks.py
2024-11-24 20:55:51 -06:00

22 lines
316 B
Python

# -*- 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
"""
if os.path.exists('dist'):
shutil.rmtree('dist')
c.run('python -m build --sdist')
c.run('twine upload dist/*')