Python numpy.distutils.misc_util.get_info() Examples
The following are 1
code examples of numpy.distutils.misc_util.get_info().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
numpy.distutils.misc_util
, or try the search function
.
![](https://www.programcreek.com/common/static/images/search.png)
Example #1
Source File: setup.py From pyhacrf with BSD 3-Clause "New" or "Revised" License | 5 votes |
def __init__(self, *args, **kwargs): from numpy import get_include from numpy.distutils.misc_util import get_info kwargs.update(get_info('npymath')) kwargs['include_dirs'] += [get_include()] Extension.__init__(self, *args, **kwargs)