forked from jerch/MC6809
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·250 lines (215 loc) · 8.3 KB
/
setup.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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
#!/usr/bin/env python
# coding: utf-8
"""
distutils setup
~~~~~~~~~~~~~~~
:copyleft: 2014-2015 by the MC6809 team, see AUTHORS for more details.
:license: GNU GPL v3 or above, see LICENSE for more details.
"""
from __future__ import absolute_import, division, print_function
from setuptools import setup, find_packages
import os
import sys
import subprocess
import shutil
from MC6809 import __version__, DIST_GROUP, ENTRY_POINT, DISTRIBUTION_NAME
PACKAGE_ROOT = os.path.dirname(os.path.abspath(__file__))
# convert creole to ReSt on-the-fly, see also:
# https://code.google.com/p/python-creole/wiki/UseInSetup
try:
from creole.setup_utils import get_long_description
except ImportError as err:
if "check" in sys.argv or "register" in sys.argv or "sdist" in sys.argv or "--long-description" in sys.argv:
raise ImportError("%s - Please install python-creole >= v0.8 - e.g.: pip install python-creole" % err)
long_description = None
else:
long_description = get_long_description(PACKAGE_ROOT)
if "test" in sys.argv or "nosetests" in sys.argv:
"""
nose is a optional dependency, so test import.
Otherwise the user get only the error:
error: invalid command 'nosetests'
"""
try:
import nose
except ImportError as err:
print("\nError: Can't import 'nose': %s" % err)
print("\nMaybe 'nose' is not installed or virtualenv not activated?!?")
print("e.g.:")
print(" ~/your/env/$ source bin/activate")
print(" ~/your/env/$ pip install nose")
print(" ~/your/env/$ ./setup.py nosetests\n")
sys.exit(-1)
else:
if "test" in sys.argv:
print("\nPlease use 'nosetests' instead of 'test' to cover all tests!\n")
print("e.g.:")
print(" $ ./setup.py nosetests\n")
sys.exit(-1)
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 Jens Diemer - GNU GPL v2+
"""
if sys.version_info[0] == 2:
input = raw_input
try:
# Test if wheel is installed, otherwise the user will only see:
# error: invalid command 'bdist_wheel'
import wheel
except ImportError as err:
print("\nError: %s" % err)
print("\nMaybe https://pypi.python.org/pypi/wheel is not installed or virtualenv not activated?!?")
print("e.g.:")
print(" ~/your/env/$ source bin/activate")
print(" ~/your/env/$ pip install wheel")
sys.exit(-1)
try:
import twine
except ImportError as err:
print("\nError: %s" % err)
print("\nMaybe https://pypi.python.org/pypi/twine is not installed or virtualenv not activated?!?")
print("e.g.:")
print(" ~/your/env/$ source bin/activate")
print(" ~/your/env/$ pip install twine")
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)
if "dev" in __version__:
print("\nERROR: Version contains 'dev': v%s\n" % __version__)
sys.exit(-1)
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:
print("\nNOTE: It seems you are not on 'master':")
print(output)
if input("\nPublish anyhow? (Y/N)").lower() not in ("y", "j"):
print("Bye.")
sys.exit(-1)
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("\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)
print("\ngit tag version (will raise a error of tag already exists)")
verbose_check_call("git", "tag", "v%s" % __version__)
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 push tag to server")
verbose_check_call("git", "push", "--tags")
sys.exit(0)
setup(
name=DISTRIBUTION_NAME,
version=__version__,
py_modules=["MC6809"],
provides=["MC6809"],
install_requires=[
"click",
"six",
],
tests_require=[
"nose", # https://pypi.python.org/pypi/nose
"DragonPyEmulator", # run DragonPy tests, to. e.g. with BASIC Interpreter
],
entry_points={
# Here we use constants, because of usage in DragonPy "starter GUI", too.
DIST_GROUP: ["%s = MC6809.cli:cli" % ENTRY_POINT],
# e.g.:
# "console_scripts": ["MC6809 = MC6809.cli:cli"],
},
author="Jens Diemer",
author_email="[email protected]",
description="MC6809 CPU emulator written in Python",
keywords="Emulator 6809",
long_description=long_description,
url="https://github.com/6809/MC6809",
license="GPL v3+",
classifiers=[
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 4 - Beta",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: System :: Emulators",
"Topic :: Software Development :: Assemblers",
"Topic :: Software Development :: Testing",
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
)