annotate DEPENDENCIES/mingw32/Python27/Lib/site-packages/numpy/distutils/command/develop.py @ 133:4acb5d8d80b6 tip

Don't fail environmental check if README.md exists (but .txt and no-suffix don't)
author Chris Cannam
date Tue, 30 Jul 2019 12:25:44 +0100
parents 2a2c65a20a8b
children
rev   line source
Chris@87 1 """ Override the develop command from setuptools so we can ensure that our
Chris@87 2 generated files (from build_src or build_scripts) are properly converted to real
Chris@87 3 files with filenames.
Chris@87 4
Chris@87 5 """
Chris@87 6 from __future__ import division, absolute_import, print_function
Chris@87 7
Chris@87 8 from setuptools.command.develop import develop as old_develop
Chris@87 9
Chris@87 10 class develop(old_develop):
Chris@87 11 __doc__ = old_develop.__doc__
Chris@87 12 def install_for_development(self):
Chris@87 13 # Build sources in-place, too.
Chris@87 14 self.reinitialize_command('build_src', inplace=1)
Chris@87 15 # Make sure scripts are built.
Chris@87 16 self.run_command('build_scripts')
Chris@87 17 old_develop.install_for_development(self)