Ответ 1
В конечном итоге это сработало для меня:
#!/usr/bin/env python
from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext as _build_ext
#
# This cludge is necessary for horrible reasons: see comment below and
# http://stackoverflow.com/q/19919905/447288
#
class build_ext(_build_ext):
def finalize_options(self):
_build_ext.finalize_options(self)
# Prevent numpy from thinking it is still in its setup process:
__builtins__.__NUMPY_SETUP__ = False
import numpy
self.include_dirs.append(numpy.get_include())
setup(
#
# Amazingly, `pip install scipy` fails if `numpy` is not already installed.
# Since we cannot control the order that dependencies are installed via
# `install_requires`, use `setup_requires` to ensure that `numpy` is available
# before `scipy` is installed.
#
# Unfortunately, this is *still* not sufficient: `numpy` has a guard to
# check when it is in its setup process that we must circumvent with
# the `cmdclass`.
#
setup_requires=['numpy'],
cmdclass={'build_ext':build_ext},
install_requires=[
'numpy',
'scipy',
],
...
)