forked from jedie/django-reversion-compare
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·230 lines (194 loc) · 7.61 KB
/
setup.py
File metadata and controls
executable file
·230 lines (194 loc) · 7.61 KB
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
#!/usr/bin/env python
# coding: utf-8
"""
distutils setup
~~~~~~~~~~~~~~~
:copyleft: 2012-2015 by the django-reversion-compare 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
import os
import sys
from setuptools import setup, find_packages
from reversion_compare import __version__
PACKAGE_ROOT = os.path.dirname(os.path.abspath(__file__))
# convert README.creole on-the-fly to ReSt, see also:
# https://github.com/jedie/python-creole/wiki/Use-In-Setup/
check_readme="publish" in sys.argv or "check" in sys.argv or "register" in sys.argv or "sdist" in sys.argv or "--long-description" in sys.argv
try:
from creole.setup_utils import get_long_description
except ImportError as err:
if check_readme:
raise ImportError("%s - Please install python-creole >= v0.8 - e.g.: pip install python-creole" % err)
long_description = None
else:
if check_readme:
print("\nCheck creole2ReSt:")
long_description = get_long_description(PACKAGE_ROOT)
if check_readme:
print("OK")
if "publish" in sys.argv:
"""
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
"""
# Imports here, so it's easier to copy&paste this complete code block ;)
import subprocess
import shutil
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)
def get_authors():
try:
with open(os.path.join(PACKAGE_ROOT, "AUTHORS"), "r") as f:
authors = [l.strip(" *\r\n") for l in f if l.strip().startswith("*")]
except Exception as err:
authors = "[Error: %s]" % err
return authors
setup(
name='django-reversion-compare',
version=__version__,
description='history compare for django-reversion',
keywords=["django", "django-reversion", "reversion", "diff", "compare"],
long_description=long_description,
author=get_authors(),
maintainer="Jens Diemer",
maintainer_email="django-reversion-compare@jensdiemer.de",
url='https://github.com/jedie/django-reversion-compare/',
download_url='http://pypi.python.org/pypi/django-reversion-compare/',
packages=find_packages(),
include_package_data=True, # include package data under svn source control
install_requires=[
"Django>=1.7,<1.9",
"django-reversion>=1.8",
],
tests_require=[
"django-tools", # https://github.com/jedie/django-tools/
],
zip_safe=False,
classifiers=[
# "Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
# "Intended Audience :: Education",
# "Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Framework :: Django",
"Framework :: Django :: 1.7",
"Framework :: Django :: 1.8",
"Topic :: Database :: Front-Ends",
"Topic :: Documentation",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: Site Management",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Operating System :: OS Independent",
],
test_suite="runtests.run_tests",
)