# -*- 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 -m build --sdist') # upload to public PyPI ctx.run('twine upload dist/Corporal-{}.tar.gz'.format(__version__))