messkit/tasks.py

26 lines
445 B
Python
Raw Normal View History

2022-03-03 21:21:51 -06:00
# -*- coding: utf-8; -*-
"""
Tasks for Messkit
"""
import os
import shutil
from invoke import task
@task
def release(c):
2022-03-03 21:21:51 -06:00
"""
Release a new version of Messkit
"""
# rebuild package
if os.path.exists('dist'):
shutil.rmtree('dist')
2023-10-29 21:45:22 -05:00
if os.path.exists('Messkit.egg-info'):
shutil.rmtree('Messkit.egg-info')
c.run('python -m build --sdist')
2022-03-03 21:21:51 -06:00
# upload to public PyPI
c.run('twine upload dist/*')