Changeset - 68a07817956a
[Not reviewed]
0 1 0
Lance Edgar - 5 years ago 2020-02-27 21:56:42
lance@edbob.org
Use twine to upload released package to PyPI
1 file changed with 8 insertions and 4 deletions:
0 comments (0 inline, 0 general) First comment
tasks.py
Show inline comments
 
@@ -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__))
0 comments (0 inline, 0 general) First comment
You need to be logged in to comment. Login now