generated from radical-cybertools/radical.template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
309 lines (249 loc) · 10.8 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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
#!/usr/bin/env python
__author__ = 'RADICAL Team'
__email__ = '[email protected]'
__copyright__ = 'Copyright ###year###, RADICAL Research, Rutgers University'
__license__ = 'MIT'
''' Setup script, only usable via pip. '''
import re
import os
import sys
import shutil
import subprocess as sp
from distutils.ccompiler import new_compiler
from setuptools import setup, Command, find_packages
# ------------------------------------------------------------------------------
name = 'radical.###lname###'
mod_root = 'src/radical/###lname###/'
# ------------------------------------------------------------------------------
#
def sh_callout(cmd):
p = sp.Popen(cmd, stdout=sp.PIPE, stderr=sp.PIPE, shell=True)
stdout, stderr = p.communicate()
ret = p.returncode
return stdout, stderr, ret
# ------------------------------------------------------------------------------
#
# versioning mechanism:
#
# - version: 1.2.3 - is used for installation
# - version_detail: v1.2.3-9-g0684b06 - is used for debugging
# - version is read from VERSION file in src_root, which then is copied to
# module dir, and is getting installed from there.
# - version_detail is derived from the git tag, and only available when
# installed from git. That is stored in mod_root/VERSION in the install
# tree.
# - The VERSION file is used to provide the runtime version information.
#
def get_version(mod_root):
'''
mod_root
a VERSION file containes the version strings is created in mod_root,
during installation. That file is used at runtime to get the version
information.
'''
try:
version_base = None
version_detail = None
# get version from './VERSION'
src_root = os.path.dirname(__file__)
if not src_root:
src_root = '.'
with open(src_root + '/VERSION', 'r') as f:
version_base = f.readline().strip()
# attempt to get version detail information from git
# We only do that though if we are in a repo root dir,
# ie. if 'git rev-parse --show-prefix' returns an empty string --
# otherwise we get confused if the ve lives beneath another repository,
# and the pip version used uses an install tmp dir in the ve space
# instead of /tmp (which seems to happen with some pip/setuptools
# versions).
out, err, ret = sh_callout(
'cd %s ; '
'test -z `git rev-parse --show-prefix` || exit -1; '
'tag=`git describe --tags --always` 2>/dev/null ; '
'branch=`git branch | grep -e "^*" | cut -f 2- -d " "` 2>/dev/null ; '
'echo $tag@$branch' % src_root)
version_detail = out.strip()
version_detail = version_detail.replace('detached from ', 'detached-')
# remove all non-alphanumeric (and then some) chars
version_detail = re.sub('[/ ]+', '-', version_detail)
version_detail = re.sub('[^[email protected]]+', '', version_detail)
if ret != 0 or \
version_detail == '@' or \
'git-error' in version_detail or \
'not-a-git-repo' in version_detail or \
'not-found' in version_detail or \
'fatal' in version_detail :
version = version_base
elif '@' not in version_base:
version = '%s-%s' % (version_base, version_detail)
else:
version = version_base
# make sure the version files exist for the runtime version inspection
path = '%s/%s' % (src_root, mod_root)
with open(path + '/VERSION', 'w') as f:
f.write(version + '\n')
sdist_name = '%s-%s.tar.gz' % (name, version)
sdist_name = sdist_name.replace('/', '-')
sdist_name = sdist_name.replace('@', '-')
sdist_name = sdist_name.replace('#', '-')
sdist_name = sdist_name.replace('_', '-')
if '--record' in sys.argv or \
'bdist_egg' in sys.argv or \
'bdist_wheel' in sys.argv :
# pip install stage 2 or easy_install stage 1
#
# pip install will untar the sdist in a tmp tree. In that tmp
# tree, we won't be able to derive git version tags -- so we pack the
# formerly derived version as ./VERSION
shutil.move('VERSION', 'VERSION.bak') # backup version
shutil.copy('%s/VERSION' % path, 'VERSION') # use full version
os.system ('python setup.py sdist') # build sdist
shutil.copy('dist/%s' % sdist_name,
'%s/%s' % (mod_root, sdist_name)) # copy into tree
shutil.move('VERSION.bak', 'VERSION') # restore version
with open(path + '/SDIST', 'w') as f:
f.write(sdist_name + '\n')
return version_base, version_detail, sdist_name
except Exception as e:
raise RuntimeError('Could not extract/set version: %s' % e)
# ------------------------------------------------------------------------------
# check python version. we need >= 2.7, <3.x
if sys.hexversion < 0x02070000 or sys.hexversion >= 0x03000000:
raise RuntimeError('%s requires Python 2.x (2.7 or higher)' % name)
# ------------------------------------------------------------------------------
# get version info -- this will create VERSION and srcroot/VERSION
version, version_detail, sdist_name = get_version(mod_root)
# ------------------------------------------------------------------------------
#
def read(*rnames):
try:
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
except Exception:
return ''
# ------------------------------------------------------------------------------
#
# borrowed from the MoinMoin-wiki installer
#
def makeDataFiles(prefix, dir):
''' Create distutils data_files structure from dir
distutil will copy all file rooted under dir into prefix, excluding
dir itself, just like 'ditto src dst' works, and unlike 'cp -r src
dst, which copy src into dst'.
Typical usage:
# install the contents of 'wiki' under sys.prefix+'share/moin'
data_files = makeDataFiles('share/moin', 'wiki')
For this directory structure:
root
file1
file2
dir
file
subdir
file
makeDataFiles('prefix', 'root') will create this distutil
data_files structure:
[('prefix', ['file1', 'file2']),
('prefix/dir', ['file']),
('prefix/dir/subdir', ['file'])]
'''
# Strip 'dir/' from of path before joining with prefix
dir = dir.rstrip('/')
strip = len(dir) + 1
found = []
os.path.walk(dir, visit, (prefix, strip, found))
return found
def visit((prefix, strip, found), dirname, names):
''' Visit directory, create distutil tuple
Add distutil tuple for each directory using this format:
(destination, [dirname/file1, dirname/file2, ...])
distutil will copy later file1, file2, ... info destination.
'''
files = []
# Iterate over a copy of names, modify names
for name in names[:]:
path = os.path.join(dirname, name)
# Ignore directories - we will visit later
if os.path.isdir(path):
# Remove directories we don't want to visit later
if isbad(name):
names.remove(name)
continue
elif isgood(name):
files.append(path)
destination = os.path.join(prefix, dirname[strip:])
found.append((destination, files))
def isbad(name):
''' Whether name should not be installed '''
return (name.startswith('.') or
name.startswith('#') or
name.endswith('.pickle') or
name == 'CVS')
def isgood(name):
''' Whether name should be installed '''
if not isbad(name):
if name.endswith('.py') or \
name.endswith('.json') or \
name.endswith('.tar'):
return True
return False
# ------------------------------------------------------------------------------
#
class RunTwine(Command):
user_options = []
def initialize_options (self) : pass
def finalize_options (self) : pass
def run (self) :
out, err, ret = sh_callout('python setup.py sdist upload -r pypi')
raise SystemExit(ret)
# ------------------------------------------------------------------------------
#
if sys.hexversion < 0x02060000 or sys.hexversion >= 0x03000000:
raise RuntimeError('SETUP ERROR: %s requires Python 2.6 or higher' % name)
#-------------------------------------------------------------------------------
setup_args = {
'name' : name,
'namespace_packages' : ['radical'],
'version' : version,
'description' : '###TODO### add project description here.',
# 'long_description' : (read('README.md') + '\n\n' + read('CHANGES.md')),
'author' : 'RADICAL Group at Rutgers University',
'author_email' : '[email protected]',
'maintainer' : 'The RADICAL Group',
'maintainer_email' : '[email protected]',
'url' : 'https://www.github.com/radical-cybertools/radical.###lname###/',
'license' : 'MIT',
'keywords' : 'radical distributed computing',
'classifiers' : [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Utilities',
'Topic :: System :: Distributed Computing',
'Topic :: Scientific/Engineering',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Operating System :: Unix'
],
'packages' : find_packages('src'),
'package_dir' : {'': 'src'},
'package_data' : {'': ['*.txt', '*.sh', '*.json', '*.gz', '*.c',
'VERSION', 'SDIST', sdist_name]},
'scripts' : ['bin/radical-###lname###-version'],
# 'setup_requires' : ['pytest-runner'],
'install_requires' : ['radical.utils'],
'tests_require' : ['pytest', 'coverage', 'flake8', 'pudb', 'pylint'],
'test_suite' : '%s.tests' % name,
'zip_safe' : False,
'data_files' : makeDataFiles('share/%s/examples/' % name, 'examples'),
'cmdclass' : {'upload': RunTwine},
}
# ------------------------------------------------------------------------------
#
setup(**setup_args)
os.system('rm -rf src/%s.egg-info' % name)
# ------------------------------------------------------------------------------