Uh oh!
There was an error while loading. Please reload this page.
forked from ipython/ipython
- Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetupbase.py
More file actions
Latest commit
408 lines (327 loc) · 13.8 KB
/
Copy pathsetupbase.py
File metadata and controls
408 lines (327 loc) · 13.8 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
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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
# encoding: utf-8
"""
This module defines the things that are used in setup.py for building IPython
This includes:
* The basic arguments to setup
* Functions for finding things like packages, package data, etc.
* A function for checking dependencies.
"""
# Copyright (c) IPython Development Team.
# Distributed under the terms of the Modified BSD License.
importos
importre
importsys
fromglobimportglob
fromloggingimportlog
fromsetuptoolsimportCommand
fromsetuptools.command.build_pyimportbuild_py
# TODO: Replacement for this?
fromdistutils.command.build_scriptsimportbuild_scripts
fromsetuptools.command.installimportinstall
fromsetuptools.command.install_scriptsimportinstall_scripts
fromsetupextimportinstall_data_ext
#-------------------------------------------------------------------------------
# Useful globals and utility functions
#-------------------------------------------------------------------------------
# A few handy globals
isfile=os.path.isfile
pjoin=os.path.join
repo_root=os.path.dirname(os.path.abspath(__file__))
defexecfile(fname, globs, locs=None):
locs=locsorglobs
withopen(fname) asf:
exec(compile(f.read(), fname, "exec"), globs, locs)
# A little utility we'll need below, since glob() does NOT allow you to do
# exclusion on multiple endings!
deffile_doesnt_endwith(test,endings):
"""Return true if test is a file and its name does NOT end with any
of the strings listed in endings."""
ifnotisfile(test):
returnFalse
foreinendings:
iftest.endswith(e):
returnFalse
returnTrue
#---------------------------------------------------------------------------
# Basic project information
#---------------------------------------------------------------------------
# release.py contains version, authors, license, url, keywords, etc.
execfile(pjoin(repo_root, 'IPython','core','release.py'), globals())
# Create a dict with the basic information
# This dict is eventually passed to setup after additional keys are added.
setup_args=dict(
name=name,
version=version,
description=description,
long_description=long_description,
author=author,
author_email=author_email,
url=url,
license=license,
platforms=platforms,
keywords=keywords,
classifiers=classifiers,
cmdclass= {'install_data': install_data_ext},
project_urls={
'Documentation': 'https://ipython.readthedocs.io/',
'Funding' : 'https://numfocus.org/',
'Source' : 'https://github.com/ipython/ipython',
'Tracker' : 'https://github.com/ipython/ipython/issues',
}
)
#---------------------------------------------------------------------------
# Find packages
#---------------------------------------------------------------------------
deffind_packages():
"""
Find all of IPython's packages.
"""
excludes= ['deathrow', 'quarantine']
packages= []
fordir,subdirs,filesinos.walk('IPython'):
package=dir.replace(os.path.sep, '.')
ifany(package.startswith('IPython.'+exc) forexcinexcludes):
# package is to be excluded (e.g. deathrow)
continue
if'__init__.py'notinfiles:
# not a package
continue
packages.append(package)
returnpackages
#---------------------------------------------------------------------------
# Find package data
#---------------------------------------------------------------------------
deffind_package_data():
"""
Find IPython's package_data.
"""
# This is not enough for these things to appear in an sdist.
# We need to muck with the MANIFEST to get this to work
package_data= {
'IPython.core' : ['profile/README*'],
'IPython.core.tests' : ['*.png', '*.jpg', 'daft_extension/*.py'],
'IPython.lib.tests' : ['*.wav'],
'IPython.testing.plugin' : ['*.txt'],
}
returnpackage_data
defcheck_package_data(package_data):
"""verify that package_data globs make sense"""
print("checking package data")
forpkg, datainpackage_data.items():
pkg_root=pjoin(*pkg.split('.'))
fordindata:
path=pjoin(pkg_root, d)
if'*'inpath:
assertlen(glob(path)) >0, "No files match pattern %s"%path
else:
assertos.path.exists(path), "Missing package data: %s"%path
defcheck_package_data_first(command):
"""decorator for checking package_data before running a given command
Probably only needs to wrap build_py
"""
classDecoratedCommand(command):
defrun(self):
check_package_data(self.package_data)
command.run(self)
returnDecoratedCommand
#---------------------------------------------------------------------------
# Find data files
#---------------------------------------------------------------------------
deffind_data_files():
"""
Find IPython's data_files.
Just man pages at this point.
"""
if"freebsd"insys.platform:
manpagebase=pjoin('man', 'man1')
else:
manpagebase=pjoin('share', 'man', 'man1')
# Simple file lists can be made by hand
manpages= [fforfinglob(pjoin('docs','man','*.1.gz')) ifisfile(f)]
ifnotmanpages:
# When running from a source tree, the manpages aren't gzipped
manpages= [fforfinglob(pjoin('docs','man','*.1')) ifisfile(f)]
# And assemble the entire output list
data_files= [ (manpagebase, manpages) ]
returndata_files
# The two functions below are copied from IPython.utils.path, so we don't need
# to import IPython during setup, which fails on Python 3.
deftarget_outdated(target,deps):
"""Determine whether a target is out of date.
target_outdated(target,deps) -> 1/0
deps: list of filenames which MUST exist.
target: single filename which may or may not exist.
If target doesn't exist or is older than any file listed in deps, return
true, otherwise return false.
"""
try:
target_time=os.path.getmtime(target)
exceptos.error:
return1
fordepindeps:
dep_time=os.path.getmtime(dep)
ifdep_time>target_time:
#print "For target",target,"Dep failed:",dep # dbg
#print "times (dep,tar):",dep_time,target_time # dbg
return1
return0
deftarget_update(target,deps,cmd):
"""Update a target with a given command given a list of dependencies.
target_update(target,deps,cmd) -> runs cmd if target is outdated.
This is just a wrapper around target_outdated() which calls the given
command if target is outdated."""
iftarget_outdated(target,deps):
os.system(cmd)
#---------------------------------------------------------------------------
# Find scripts
#---------------------------------------------------------------------------
deffind_entry_points():
"""Defines the command line entry points for IPython
This always uses setuptools-style entry points. When setuptools is not in
use, our own build_scripts_entrypt class below parses these and builds
command line scripts.
Each of our entry points gets both a plain name, e.g. ipython, and one
suffixed with the Python major version number, e.g. ipython3.
"""
ep= [
'ipython%s = IPython:start_ipython',
'iptest%s = IPython.testing.iptestcontroller:main',
]
suffix=str(sys.version_info[0])
return [e%''foreinep] + [e%suffixforeinep]
script_src="""#!{executable}
# This script was automatically generated by setup.py
if __name__ == '__main__':
from {mod} import {func}
{func}()
"""
classbuild_scripts_entrypt(build_scripts):
"""Build the command line scripts
Parse setuptools style entry points and write simple scripts to run the
target functions.
On Windows, this also creates .cmd wrappers for the scripts so that you can
easily launch them from a command line.
"""
defrun(self):
self.mkpath(self.build_dir)
outfiles= []
forscriptinfind_entry_points():
name, entrypt=script.split('=')
name=name.strip()
entrypt=entrypt.strip()
outfile=os.path.join(self.build_dir, name)
outfiles.append(outfile)
print('Writing script to', outfile)
mod, func=entrypt.split(':')
withopen(outfile, 'w') asf:
f.write(script_src.format(executable=sys.executable,
mod=mod, func=func))
ifsys.platform=='win32':
# Write .cmd wrappers for Windows so 'ipython' etc. work at the
# command line
cmd_file=os.path.join(self.build_dir, name+'.cmd')
cmd=r'@"{python}" "%~dp0\{script}" %*\r\n'.format(
python=sys.executable, script=name)
log.info("Writing %s wrapper script"%cmd_file)
withopen(cmd_file, 'w') asf:
f.write(cmd)
returnoutfiles, outfiles
classinstall_lib_symlink(Command):
user_options= [
('install-dir=', 'd', "directory to install to"),
]
definitialize_options(self):
self.install_dir=None
deffinalize_options(self):
self.set_undefined_options('symlink',
('install_lib', 'install_dir'),
)
defrun(self):
ifsys.platform=='win32':
raiseException("This doesn't work on Windows.")
pkg=os.path.join(os.getcwd(), 'IPython')
dest=os.path.join(self.install_dir, 'IPython')
ifos.path.islink(dest):
print('removing existing symlink at %s'%dest)
os.unlink(dest)
print('symlinking %s -> %s'% (pkg, dest))
os.symlink(pkg, dest)
classunsymlink(install):
defrun(self):
dest=os.path.join(self.install_lib, 'IPython')
ifos.path.islink(dest):
print('removing symlink at %s'%dest)
os.unlink(dest)
else:
print('No symlink exists at %s'%dest)
classinstall_symlinked(install):
defrun(self):
ifsys.platform=='win32':
raiseException("This doesn't work on Windows.")
# Run all sub-commands (at least those that need to be run)
forcmd_nameinself.get_sub_commands():
self.run_command(cmd_name)
# 'sub_commands': a list of commands this command might have to run to
# get its work done. See cmd.py for more info.
sub_commands= [('install_lib_symlink', lambdaself:True),
('install_scripts_sym', lambdaself:True),
]
classinstall_scripts_for_symlink(install_scripts):
"""Redefined to get options from 'symlink' instead of 'install'.
I love distutils almost as much as I love setuptools.
"""
deffinalize_options(self):
self.set_undefined_options('build', ('build_scripts', 'build_dir'))
self.set_undefined_options('symlink',
('install_scripts', 'install_dir'),
('force', 'force'),
('skip_build', 'skip_build'),
)
#---------------------------------------------------------------------------
# VCS related
#---------------------------------------------------------------------------
defgit_prebuild(pkg_dir, build_cmd=build_py):
"""Return extended build or sdist command class for recording commit
records git commit in IPython.utils._sysinfo.commit
for use in IPython.utils.sysinfo.sys_info() calls after installation.
"""
classMyBuildPy(build_cmd):
''' Subclass to write commit data into installation tree '''
defrun(self):
# loose as `.dev` is suppose to be invalid
print("check version number")
loose_pep440re=re.compile(r'^(\d+)\.(\d+)\.(\d+((a|b|rc)\d+)?)(\.post\d+)?(\.dev\d*)?$')
ifnotloose_pep440re.match(version):
raiseValueError("Version number '%s' is not valid (should match [N!]N(.N)*[{a|b|rc}N][.postN][.devN])"%version)
build_cmd.run(self)
# this one will only fire for build commands
ifhasattr(self, 'build_lib'):
self._record_commit(self.build_lib)
defmake_release_tree(self, base_dir, files):
# this one will fire for sdist
build_cmd.make_release_tree(self, base_dir, files)
self._record_commit(base_dir)
def_record_commit(self, base_dir):
importsubprocess
proc=subprocess.Popen('git rev-parse --short HEAD',
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
shell=True)
repo_commit, _=proc.communicate()
repo_commit=repo_commit.strip().decode("ascii")
out_pth=pjoin(base_dir, pkg_dir, 'utils', '_sysinfo.py')
ifos.path.isfile(out_pth) andnotrepo_commit:
# nothing to write, don't clobber
return
print("writing git commit '%s' to %s"% (repo_commit, out_pth))
# remove to avoid overwriting original via hard link
try:
os.remove(out_pth)
except (IOError, OSError):
pass
withopen(out_pth, 'w') asout_file:
out_file.writelines([
'# GENERATED BY setup.py\n',
'commit = u"%s"\n'%repo_commit,
])
returnMyBuildPy