Mercurial > hg > vamp-build-and-test
comparison DEPENDENCIES/mingw32/Python27/Lib/site-packages/numpy/distutils/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 def configuration(parent_package='',top_path=None): | |
5 from numpy.distutils.misc_util import Configuration | |
6 config = Configuration('distutils', parent_package, top_path) | |
7 config.add_subpackage('command') | |
8 config.add_subpackage('fcompiler') | |
9 config.add_data_dir('tests') | |
10 config.add_data_files('site.cfg') | |
11 config.add_data_files('mingw/gfortran_vs2003_hack.c') | |
12 config.make_config_py() | |
13 return config | |
14 | |
15 if __name__ == '__main__': | |
16 from numpy.distutils.core import setup | |
17 setup(configuration=configuration) |