##// END OF EJS Templates
don't build sphinx docs for sdist
MinRK -
Show More
@@ -1,35 +1,36 b''
1 1 include ipython.py
2 2 include setup2.py
3 3 include setup3.py
4 4 include setupbase.py
5 5 include setupegg.py
6 6
7 7 graft setupext
8 8
9 9 graft scripts
10 10
11 11 # Load main dir but exclude things we don't want in the distro
12 12 graft IPython
13 13 prune IPython/deathrow
14 14 prune IPython/frontend/html/notebook/static/mathjax
15 15
16 16 # Include some specific files and data resources we need
17 17 include IPython/.git_commit_info.ini
18 18 include IPython/frontend/qt/console/resources/icon/IPythonConsole.svg
19 19
20 20 # Documentation
21 21 graft docs
22 22 exclude docs/\#*
23 23 exclude docs/man/*.1
24 24
25 25 # docs subdirs we want to skip
26 26 prune docs/attic
27 27 prune docs/build
28 28 prune docs/gh-pages
29 prune docs/dist
29 30
30 31 # Patterns to exclude from any directory
31 32 global-exclude *~
32 33 global-exclude *.flc
33 34 global-exclude *.pyc
34 35 global-exclude *.pyo
35 36 global-exclude .dircopy.log
@@ -1,272 +1,243 b''
1 1 #!/usr/bin/env python
2 2 # -*- coding: utf-8 -*-
3 3 """Setup script for IPython.
4 4
5 5 Under Posix environments it works like a typical setup.py script.
6 6 Under Windows, the command sdist is not supported, since IPython
7 7 requires utilities which are not available under Windows."""
8 8
9 9 #-----------------------------------------------------------------------------
10 10 # Copyright (c) 2008-2011, IPython Development Team.
11 11 # Copyright (c) 2001-2007, Fernando Perez <fernando.perez@colorado.edu>
12 12 # Copyright (c) 2001, Janko Hauser <jhauser@zscout.de>
13 13 # Copyright (c) 2001, Nathaniel Gray <n8gray@caltech.edu>
14 14 #
15 15 # Distributed under the terms of the Modified BSD License.
16 16 #
17 17 # The full license is in the file COPYING.txt, distributed with this software.
18 18 #-----------------------------------------------------------------------------
19 19
20 20 #-----------------------------------------------------------------------------
21 21 # Minimal Python version sanity check
22 22 #-----------------------------------------------------------------------------
23 23
24 24 import sys
25 25
26 26 # This check is also made in IPython/__init__, don't forget to update both when
27 27 # changing Python version requirements.
28 28 if sys.version[0:3] < '2.6':
29 29 error = """\
30 30 ERROR: 'IPython requires Python Version 2.6 or above.'
31 31 Exiting."""
32 32 print >> sys.stderr, error
33 33 sys.exit(1)
34 34
35 35 # At least we're on the python version we need, move on.
36 36
37 37 #-------------------------------------------------------------------------------
38 38 # Imports
39 39 #-------------------------------------------------------------------------------
40 40
41 41 # Stdlib imports
42 42 import os
43 43 import shutil
44 44
45 45 from glob import glob
46 46
47 47 # BEFORE importing distutils, remove MANIFEST. distutils doesn't properly
48 48 # update it when the contents of directories change.
49 49 if os.path.exists('MANIFEST'): os.remove('MANIFEST')
50 50
51 51 from distutils.core import setup
52 52
53 53 # Our own imports
54 54 from IPython.utils.path import target_update
55 55
56 56 from setupbase import (
57 57 setup_args,
58 58 find_packages,
59 59 find_package_data,
60 60 find_scripts,
61 61 find_data_files,
62 62 check_for_dependencies,
63 63 record_commit_info,
64 64 )
65 65 from setupext import setupext
66 66
67 67 isfile = os.path.isfile
68 68 pjoin = os.path.join
69 69
70 70 #-----------------------------------------------------------------------------
71 71 # Function definitions
72 72 #-----------------------------------------------------------------------------
73 73
74 74 def cleanup():
75 75 """Clean up the junk left around by the build process"""
76 76 if "develop" not in sys.argv:
77 77 try:
78 78 shutil.rmtree('ipython.egg-info')
79 79 except:
80 80 try:
81 81 os.unlink('ipython.egg-info')
82 82 except:
83 83 pass
84 84
85 85 #-------------------------------------------------------------------------------
86 86 # Handle OS specific things
87 87 #-------------------------------------------------------------------------------
88 88
89 89 if os.name == 'posix':
90 90 os_name = 'posix'
91 91 elif os.name in ['nt','dos']:
92 92 os_name = 'windows'
93 93 else:
94 94 print 'Unsupported operating system:',os.name
95 95 sys.exit(1)
96 96
97 97 # Under Windows, 'sdist' has not been supported. Now that the docs build with
98 98 # Sphinx it might work, but let's not turn it on until someone confirms that it
99 99 # actually works.
100 100 if os_name == 'windows' and 'sdist' in sys.argv:
101 101 print 'The sdist command is not available under Windows. Exiting.'
102 102 sys.exit(1)
103 103
104 104 #-------------------------------------------------------------------------------
105 105 # Things related to the IPython documentation
106 106 #-------------------------------------------------------------------------------
107 107
108 108 # update the manuals when building a source dist
109 109 if len(sys.argv) >= 2 and sys.argv[1] in ('sdist','bdist_rpm'):
110 110 import textwrap
111 111
112 112 # List of things to be updated. Each entry is a triplet of args for
113 113 # target_update()
114 114 to_update = [
115 115 # FIXME - Disabled for now: we need to redo an automatic way
116 116 # of generating the magic info inside the rst.
117 117 #('docs/magic.tex',
118 118 #['IPython/Magic.py'],
119 119 #"cd doc && ./update_magic.sh" ),
120 120
121 121 ('docs/man/ipcluster.1.gz',
122 122 ['docs/man/ipcluster.1'],
123 123 'cd docs/man && gzip -9c ipcluster.1 > ipcluster.1.gz'),
124 124
125 125 ('docs/man/ipcontroller.1.gz',
126 126 ['docs/man/ipcontroller.1'],
127 127 'cd docs/man && gzip -9c ipcontroller.1 > ipcontroller.1.gz'),
128 128
129 129 ('docs/man/ipengine.1.gz',
130 130 ['docs/man/ipengine.1'],
131 131 'cd docs/man && gzip -9c ipengine.1 > ipengine.1.gz'),
132 132
133 133 ('docs/man/iplogger.1.gz',
134 134 ['docs/man/iplogger.1'],
135 135 'cd docs/man && gzip -9c iplogger.1 > iplogger.1.gz'),
136 136
137 137 ('docs/man/ipython.1.gz',
138 138 ['docs/man/ipython.1'],
139 139 'cd docs/man && gzip -9c ipython.1 > ipython.1.gz'),
140 140
141 141 ('docs/man/irunner.1.gz',
142 142 ['docs/man/irunner.1'],
143 143 'cd docs/man && gzip -9c irunner.1 > irunner.1.gz'),
144 144
145 145 ('docs/man/pycolor.1.gz',
146 146 ['docs/man/pycolor.1'],
147 147 'cd docs/man && gzip -9c pycolor.1 > pycolor.1.gz'),
148 148 ]
149 149
150 # Only build the docs if sphinx is present
151 try:
152 import sphinx
153 except ImportError:
154 pass
155 else:
156 # The Makefile calls the do_sphinx scripts to build html and pdf, so
157 # just one target is enough to cover all manual generation
158
159 # First, compute all the dependencies that can force us to rebuild the
160 # docs. Start with the main release file that contains metadata
161 docdeps = ['IPython/core/release.py']
162 # Inculde all the reST sources
163 pjoin = os.path.join
164 for dirpath,dirnames,filenames in os.walk('docs/source'):
165 if dirpath in ['_static','_templates']:
166 continue
167 docdeps += [ pjoin(dirpath,f) for f in filenames
168 if f.endswith('.txt') ]
169 # and the examples
170 for dirpath,dirnames,filenames in os.walk('docs/example'):
171 docdeps += [ pjoin(dirpath,f) for f in filenames
172 if not f.endswith('~') ]
173 # then, make them all dependencies for the main html docs
174 to_update.append(
175 ('docs/dist/index.html',
176 docdeps,
177 "cd docs && make dist")
178 )
179 150
180 151 [ target_update(*t) for t in to_update ]
181 152
182 153 #---------------------------------------------------------------------------
183 154 # Find all the packages, package data, and data_files
184 155 #---------------------------------------------------------------------------
185 156
186 157 packages = find_packages()
187 158 package_data = find_package_data()
188 159 data_files = find_data_files()
189 160
190 161 #---------------------------------------------------------------------------
191 162 # Handle scripts, dependencies, and setuptools specific things
192 163 #---------------------------------------------------------------------------
193 164
194 165 # For some commands, use setuptools. Note that we do NOT list install here!
195 166 # If you want a setuptools-enhanced install, just run 'setupegg.py install'
196 167 needs_setuptools = set(('develop', 'release', 'bdist_egg', 'bdist_rpm',
197 168 'bdist', 'bdist_dumb', 'bdist_wininst', 'install_egg_info',
198 169 'egg_info', 'easy_install', 'upload',
199 170 ))
200 171 if sys.platform == 'win32':
201 172 # Depend on setuptools for install on *Windows only*
202 173 # If we get script-installation working without setuptools,
203 174 # then we can back off, but until then use it.
204 175 # See Issue #369 on GitHub for more
205 176 needs_setuptools.add('install')
206 177
207 178 if len(needs_setuptools.intersection(sys.argv)) > 0:
208 179 import setuptools
209 180
210 181 # This dict is used for passing extra arguments that are setuptools
211 182 # specific to setup
212 183 setuptools_extra_args = {}
213 184
214 185 if 'setuptools' in sys.modules:
215 186 setuptools_extra_args['zip_safe'] = False
216 187 setuptools_extra_args['entry_points'] = find_scripts(True)
217 188 setup_args['extras_require'] = dict(
218 189 parallel = 'pyzmq>=2.1.4',
219 190 zmq = 'pyzmq>=2.1.4',
220 191 doc = 'Sphinx>=0.3',
221 192 test = 'nose>=0.10.1',
222 193 notebook = 'tornado>=2.0'
223 194 )
224 195 requires = setup_args.setdefault('install_requires', [])
225 196 setupext.display_status = False
226 197 if not setupext.check_for_readline():
227 198 if sys.platform == 'darwin':
228 199 requires.append('readline')
229 200 elif sys.platform.startswith('win') and sys.maxsize < 2**32:
230 201 # only require pyreadline on 32b Windows, due to 64b bug in pyreadline:
231 202 # https://bugs.launchpad.net/pyreadline/+bug/787574
232 203 requires.append('pyreadline')
233 204 else:
234 205 pass
235 206 # do we want to install readline here?
236 207
237 208 # Script to be run by the windows binary installer after the default setup
238 209 # routine, to add shortcuts and similar windows-only things. Windows
239 210 # post-install scripts MUST reside in the scripts/ dir, otherwise distutils
240 211 # doesn't find them.
241 212 if 'bdist_wininst' in sys.argv:
242 213 if len(sys.argv) > 2 and \
243 214 ('sdist' in sys.argv or 'bdist_rpm' in sys.argv):
244 215 print >> sys.stderr, "ERROR: bdist_wininst must be run alone. Exiting."
245 216 sys.exit(1)
246 217 setup_args['scripts'] = [pjoin('scripts','ipython_win_post_install.py')]
247 218 setup_args['options'] = {"bdist_wininst":
248 219 {"install_script":
249 220 "ipython_win_post_install.py"}}
250 221 else:
251 222 # If we are running without setuptools, call this function which will
252 223 # check for dependencies an inform the user what is needed. This is
253 224 # just to make life easy for users.
254 225 check_for_dependencies()
255 226 setup_args['scripts'] = find_scripts(False)
256 227
257 228 #---------------------------------------------------------------------------
258 229 # Do the actual setup now
259 230 #---------------------------------------------------------------------------
260 231
261 232 setup_args['cmdclass'] = {'build_py': record_commit_info('IPython')}
262 233 setup_args['packages'] = packages
263 234 setup_args['package_data'] = package_data
264 235 setup_args['data_files'] = data_files
265 236 setup_args.update(setuptools_extra_args)
266 237
267 238 def main():
268 239 setup(**setup_args)
269 240 cleanup()
270 241
271 242 if __name__ == '__main__':
272 243 main()
General Comments 0
You need to be logged in to leave comments. Login now