diff --git a/tasks.py b/tasks.py index b26919e..cff0aa6 100644 --- a/tasks.py +++ b/tasks.py @@ -22,6 +22,5 @@ def release(ctx): shutil.rmtree('Corporal.egg-info') ctx.run('python setup.py sdist --formats=gztar') - # TODO: uncomment and update these details, to upload to private PyPI - #filename = 'Corporal-{}.tar.gz'.format(__version__) - #ctx.run('scp dist/{} rattail@pypi.example.com:/srv/pypi/corporal/'.format(filename)) + # upload to public PyPI + ctx.run('twine upload dist/Corporal-{}.tar.gz'.format(__version__))