From 68a07817956ac6d286de9808eb54beb5a4b36149 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Thu, 27 Feb 2020 21:56:42 -0600 Subject: [PATCH] Use twine to upload released package to PyPI --- tasks.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/tasks.py b/tasks.py index b57cb64..467edd9 100644 --- a/tasks.py +++ b/tasks.py @@ -2,7 +2,7 @@ ################################################################################ # # Rattail -- Retail Software Framework -# Copyright © 2010-2018 Lance Edgar +# Copyright © 2010-2020 Lance Edgar # # This file is part of Rattail. # @@ -24,17 +24,21 @@ Tasks for rattail-corepos """ -from __future__ import unicode_literals, absolute_import - +import os import shutil from invoke import task +here = os.path.abspath(os.path.dirname(__file__)) +exec(open(os.path.join(here, 'rattail_corepos', '_version.py')).read()) + + @task def release(ctx): """ Release a new version of 'rattail-corepos'. """ shutil.rmtree('rattail_corepos.egg-info') - ctx.run('python setup.py sdist --formats=gztar upload') + ctx.run('python setup.py sdist --formats=gztar') + ctx.run('twine upload dist/rattail_corepos-{}.tar.gz'.format(__version__))