|
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 | | -#------------------------------------------------------------------------------- |
10 | | -# Copyright (C) 2008 The IPython Development Team |
| 9 | +#----------------------------------------------------------------------------- |
| 10 | +# Copyright (c) 2008-2010, IPython Development Team. |
| 11 | +# Copyright (c) 2001-2007, Fernando Perez <[email protected]> |
| 12 | +# Copyright (c) 2001, Janko Hauser <[email protected]> |
| 13 | +# Copyright (c) 2001, Nathaniel Gray <[email protected]> |
11 | 14 | # |
12 | | -# Distributed under the terms of the BSD License. The full license is in |
13 | | -# the file COPYING, distributed as part of this software. |
14 | | -#------------------------------------------------------------------------------- |
| 15 | +# Distributed under the terms of the Modified BSD License. |
| 16 | +# |
| 17 | +# The full license is in the file COPYING.txt, distributed with this software. |
| 18 | +#----------------------------------------------------------------------------- |
15 | 19 |
|
16 | 20 | #----------------------------------------------------------------------------- |
17 | 21 | # Minimal Python version sanity check |
|
55 | 59 | find_package_data, |
56 | 60 | find_scripts, |
57 | 61 | find_data_files, |
58 | | - check_for_dependencies |
| 62 | + check_for_dependencies, |
| 63 | + record_commit_info, |
59 | 64 | ) |
60 | 65 |
|
61 | 66 | isfile = os.path.isfile |
@@ -239,6 +244,7 @@ def cleanup(): |
239 | 244 | # Do the actual setup now |
240 | 245 | #--------------------------------------------------------------------------- |
241 | 246 |
|
| 247 | +setup_args['cmdclass'] = {'build_py': record_commit_info('IPython')} |
242 | 248 | setup_args['packages'] = packages |
243 | 249 | setup_args['package_data'] = package_data |
244 | 250 | setup_args['scripts'] = scripts |
|
0 commit comments