-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup_publish.py
187 lines (155 loc) · 5.68 KB
/
setup_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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
"""
'publish' helper for setup.py
copyleft 2015-2019 Jens Diemer - GNU GPL v2+
Sourcecode can be found here:
https://github.com/jedie/python-code-snippets/blob/master/CodeSnippets/setup_publish.py
"""
import os
import sys
import subprocess
import shutil
# from your_package import __version__
__version__ = None
if "publish" in sys.argv:
"""
'publish' helper for setup.py
Build and upload to PyPi, if...
... __version__ doesn't contains "dev"
... we are on git 'master' branch
... git repository is 'clean' (no changed files)
Upload with "twine", git tag the current version and git push --tag
The cli arguments will be pass to 'twine'. So this is possible:
* Display 'twine' help page...: ./setup.py publish --help
* use testpypi................: ./setup.py publish --repository=test
TODO: Look at: https://github.com/zestsoftware/zest.releaser
Source: https://github.com/jedie/python-code-snippets/blob/master/CodeSnippets/setup_publish.py
copyleft 2015-2019 Jens Diemer - GNU GPL v2+
"""
assert sys.version_info[0] > 2, "Python v3 is needed!"
import_error = False
try:
# Test if wheel is installed, otherwise the user will only see:
# error: invalid command 'bdist_wheel'
import wheel # noqa
except ImportError as err:
print("\nError: %s\n" % err)
print(
"Maybe https://pypi.org/project/wheel is not installed"
" or virtualenv not activated?!?"
)
print("e.g.:")
print(" ~/your/env/$ source bin/activate")
print(" ~/your/env/$ pip install wheel")
import_error = True
try:
import twine # noqa
except ImportError as err:
print("\nError: %s\n" % err)
print(
"Maybe https://pypi.org/project/twine is not installed"
" or virtualenv not activated?!?"
)
print("e.g.:")
print(" ~/your/env/$ source bin/activate")
print(" ~/your/env/$ pip install twine")
import_error = True
if import_error:
sys.exit(-1)
def verbose_check_output(*args):
""" 'verbose' version of subprocess.check_output() """
call_info = "Call: %r" % " ".join(args)
try:
output = subprocess.check_output(
args, universal_newlines=True, stderr=subprocess.STDOUT)
except subprocess.CalledProcessError as err:
print("\n***ERROR:")
print(err.output)
raise
return call_info, output
def verbose_check_call(*args):
""" 'verbose' version of subprocess.check_call() """
print("\tCall: %r\n" % " ".join(args))
subprocess.check_call(args, universal_newlines=True)
def confirm(txt):
print("\n%s" % txt)
if input("\nPublish anyhow? (Y/N)").lower() not in ("y", "j"):
print("Bye.")
sys.exit(-1)
for key in ("dev", "rc"):
if key in __version__:
confirm("WARNING: Version contains %r: v%s\n" % (key, __version__))
break
print("\nCheck if we are on 'master' branch:")
call_info, output = verbose_check_output("git", "branch", "--no-color")
print("\t%s" % call_info)
if "* master" in output:
print("OK")
else:
confirm("\nNOTE: It seems you are not on 'master':\n%s" % output)
print("\ncheck if if git repro is clean:")
call_info, output = verbose_check_output("git", "status", "--porcelain")
print("\t%s" % call_info)
if output == "":
print("OK")
else:
print("\n *** ERROR: git repro not clean:")
print(output)
sys.exit(-1)
print("\nRun './setup.py check':")
call_info, output = verbose_check_output("./setup.py", "check")
if "warning" in output:
print(output)
confirm("Warning found!")
else:
print("OK")
print("\ncheck if pull is needed")
verbose_check_call("git", "fetch", "--all")
call_info, output = verbose_check_output("git", "log", "HEAD..origin/master", "--oneline")
print("\t%s" % call_info)
if output == "":
print("OK")
else:
print("\n *** ERROR: git repro is not up-to-date:")
print(output)
sys.exit(-1)
verbose_check_call("git", "push")
print("\nCleanup old builds:")
def rmtree(path):
path = os.path.abspath(path)
if os.path.isdir(path):
print("\tremove tree:", path)
shutil.rmtree(path)
rmtree("./dist")
rmtree("./build")
print("\nbuild but don't upload...")
log_filename = "build.log"
with open(log_filename, "a") as log:
call_info, output = verbose_check_output(
sys.executable or "python",
"setup.py", "sdist", "bdist_wheel", "bdist_egg"
)
print("\t%s" % call_info)
log.write(call_info)
log.write(output)
print("Build output is in log file: %r" % log_filename)
git_tag = "v%s" % __version__
print("\ncheck git tag")
call_info, output = verbose_check_output("git", "log", "HEAD..origin/master", "--oneline")
if git_tag in output:
print("\n *** ERROR: git tag %r already exists!" % git_tag)
print(output)
sys.exit(-1)
else:
print("OK")
print("\nUpload with twine:")
twine_args = sys.argv[1:]
twine_args.remove("publish")
twine_args.insert(1, "dist/*")
print("\ttwine upload command args: %r" % " ".join(twine_args))
from twine.commands.upload import main as twine_upload
twine_upload(twine_args)
print("\ngit tag version")
verbose_check_call("git", "tag", git_tag)
print("\ngit push tag to server")
verbose_check_call("git", "push", "--tags")
sys.exit(0)