corporal/tasks.py
2021-06-11 17:47:16 -05:00

27 lines
541 B
Python

# -*- coding: utf-8; -*-
"""
Tasks for Corporal
"""
import os
import shutil
from invoke import task
here = os.path.abspath(os.path.dirname(__file__))
exec(open(os.path.join(here, 'corporal', '_version.py')).read())
@task
def release(ctx):
"""
Release a new version of Corporal
"""
# rebuild local tar.gz file for distribution
shutil.rmtree('Corporal.egg-info')
ctx.run('python setup.py sdist --formats=gztar')
# upload to public PyPI
ctx.run('twine upload dist/Corporal-{}.tar.gz'.format(__version__))