Mercurial > hg > vamp-build-and-test
comparison DEPENDENCIES/mingw32/Python27/Lib/site-packages/numpy/setup.py @ 87:2a2c65a20a8b
Add Python libs and headers
author | Chris Cannam |
---|---|
date | Wed, 25 Feb 2015 14:05:22 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
86:413a9d26189e | 87:2a2c65a20a8b |
---|---|
1 #!/usr/bin/env python | |
2 from __future__ import division, print_function | |
3 | |
4 | |
5 def configuration(parent_package='',top_path=None): | |
6 from numpy.distutils.misc_util import Configuration | |
7 config = Configuration('numpy', parent_package, top_path) | |
8 config.add_subpackage('distutils') | |
9 config.add_subpackage('testing') | |
10 config.add_subpackage('f2py') | |
11 config.add_subpackage('core') | |
12 config.add_subpackage('lib') | |
13 config.add_subpackage('fft') | |
14 config.add_subpackage('linalg') | |
15 config.add_subpackage('random') | |
16 config.add_subpackage('ma') | |
17 config.add_subpackage('matrixlib') | |
18 config.add_subpackage('compat') | |
19 config.add_subpackage('polynomial') | |
20 config.add_subpackage('doc') | |
21 config.add_data_dir('doc') | |
22 config.add_data_dir('tests') | |
23 config.make_config_py() # installs __config__.py | |
24 return config | |
25 | |
26 if __name__ == '__main__': | |
27 print('This is the wrong setup.py file to run') |