-
Notifications
You must be signed in to change notification settings - Fork 35
/
publish.py
executable file
·75 lines (52 loc) · 1.58 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
#!/usr/bin/env python
# vim:fileencoding=utf-8
# License: Apache 2.0 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__)))
sys.path.insert(0, '.')
if True:
from unix_build import version
del sys.path[0]
VERSION = '{}.{}.{}'.format(*version)
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, '-m', 'build', '-s')
def tag_release():
run('git push')
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:
raw_input
except NameError:
raw_input = input
def main():
if raw_input('Publish version {} [y/n]? '.format(red(VERSION))) != 'y':
raise SystemExit(1)
build_release()
if raw_input(red('Upload') + ' release [y/n]? ') != 'y':
raise SystemExit(1)
tag_release()
upload_release()
if __name__ == '__main__':
main()