forked from python-mechanize/mechanize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
publish.py
executable file
·79 lines (55 loc) · 1.76 KB
/
publish.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env python2
# vim:fileencoding=utf-8
# License: BSD Copyright: 2017, Kovid Goyal <kovid at kovidgoyal.net>
from __future__ import (absolute_import, division, print_function,
unicode_literals)
import glob
import os
import shlex
import shutil
import subprocess
import sys
os.chdir(os.path.dirname(os.path.abspath(__file__)))
VERSION = open(os.path.join("mechanize", "_version.py")).\
readlines()[0].strip(' "\n')
def red(text):
return '\033[91;1m' + text + '\033[39;22m'
def green(text):
return '\033[92;1m' + text + '\033[39;22m'
def run(*cmd):
if len(cmd) == 1:
cmd = shlex.split(cmd[0])
print(green(' '.join(cmd)))
ret = subprocess.Popen(cmd).wait()
if ret != 0:
raise SystemExit(ret)
def build_release():
for rem in 'dist build'.split():
os.path.exists(rem) and shutil.rmtree(rem)
run(sys.executable, 'setup.py', '-q', 'sdist', 'bdist_wheel')
def sign_release():
for installer in glob.glob('dist/*'):
run(os.environ['PENV'] + '/gpg-as-kovid', '--armor', '--detach-sig',
installer)
def tag_release():
run('git tag -s "v{0}" -m "version-{0}"'.format(VERSION))
run('git push origin "v{0}"'.format(VERSION))
def upload_release():
files = list(glob.glob('dist/*'))
run('twine', 'upload', '--config-file',
os.path.join(os.environ['PENV'], 'pypi'), *files)
try:
myinput = raw_input
except NameError:
myinput = input
def main():
if myinput('Publish version {} [y/n]? '.format(red(VERSION))) != 'y':
raise SystemExit(1)
build_release()
sign_release()
if myinput(red('Upload') + ' release [y/n]? ') != 'y':
raise SystemExit(1)
tag_release()
upload_release()
if __name__ == '__main__':
main()