-
Notifications
You must be signed in to change notification settings - Fork 5
/
publish.py
executable file
·82 lines (58 loc) · 1.96 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
80
81
82
#!/usr/bin/env python
# vim:fileencoding=utf-8
# License: LGPLv3 Copyright: 2019, Kovid Goyal <kovid at kovidgoyal.net>
from __future__ import (absolute_import, division, print_function,
unicode_literals)
import ast
import glob
import os
import re
import shlex
import shutil
import subprocess
os.chdir(os.path.dirname(os.path.abspath(__file__)))
VERSION = open('src/css_parser/version.py', 'rb').read().decode('utf-8')
VERSION = '.'.join(map(str, ast.literal_eval(re.search(r'^version\s+=\s+(.+)', VERSION, flags=re.M).group(1))))
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('python3', 'setup.py', '-q', 'sdist', 'bdist_wheel')
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 has_executable(exe):
for path in os.environ['PATH'].split(os.pathsep):
if os.access(os.path.join(path, exe), os.X_OK):
return True
return False
def main():
if not has_executable('twine'):
raise SystemExit('Need to install twine to upload to PyPI')
if myinput('Publish version {} [y/n]? '.format(red(VERSION))) != 'y':
raise SystemExit(1)
build_release()
if myinput(red('Upload') + ' release [y/n]? ') != 'y':
raise SystemExit(1)
tag_release()
upload_release()
if __name__ == '__main__':
main()