61 lines
1.6 KiB
Python
61 lines
1.6 KiB
Python
# coding: utf-8
|
|
from __future__ import unicode_literals, division, absolute_import, print_function
|
|
|
|
import subprocess
|
|
import sys
|
|
|
|
import twine.cli
|
|
|
|
from . import package_name, package_root, has_tests_package
|
|
from .build import run as build
|
|
|
|
|
|
def run():
|
|
"""
|
|
Creates a sdist .tar.gz and a bdist_wheel --univeral .whl and uploads
|
|
them to pypi
|
|
|
|
:return:
|
|
A bool - if the packaging and upload process was successful
|
|
"""
|
|
|
|
git_wc_proc = subprocess.Popen(
|
|
['git', 'status', '--porcelain', '-uno'],
|
|
stdout=subprocess.PIPE,
|
|
stderr=subprocess.STDOUT,
|
|
cwd=package_root
|
|
)
|
|
git_wc_status, _ = git_wc_proc.communicate()
|
|
|
|
if len(git_wc_status) > 0:
|
|
print(git_wc_status.decode('utf-8').rstrip(), file=sys.stderr)
|
|
print('Unable to perform release since working copy is not clean', file=sys.stderr)
|
|
return False
|
|
|
|
git_tag_proc = subprocess.Popen(
|
|
['git', 'tag', '-l', '--contains', 'HEAD'],
|
|
stdout=subprocess.PIPE,
|
|
stderr=subprocess.PIPE,
|
|
cwd=package_root
|
|
)
|
|
tag, tag_error = git_tag_proc.communicate()
|
|
|
|
if len(tag_error) > 0:
|
|
print(tag_error.decode('utf-8').rstrip(), file=sys.stderr)
|
|
print('Error looking for current git tag', file=sys.stderr)
|
|
return False
|
|
|
|
if len(tag) == 0:
|
|
print('No git tag found on HEAD', file=sys.stderr)
|
|
return False
|
|
|
|
tag = tag.decode('ascii').strip()
|
|
|
|
build()
|
|
|
|
twine.cli.dispatch(['upload', 'dist/%s-%s*' % (package_name, tag)])
|
|
if has_tests_package:
|
|
twine.cli.dispatch(['upload', 'dist/%s_tests-%s*' % (package_name, tag)])
|
|
|
|
return True
|