(self)
| 33 | return new_scripts |
| 34 | |
| 35 | def run (self): |
| 36 | if not self.scripts: |
| 37 | return |
| 38 | |
| 39 | self.scripts = self.generate_scripts(self.scripts) |
| 40 | # Now make sure that the distribution object has this list of scripts. |
| 41 | # setuptools' develop command requires that this be a list of filenames, |
| 42 | # not functions. |
| 43 | self.distribution.scripts = self.scripts |
| 44 | |
| 45 | return old_build_scripts.run(self) |
| 46 | |
| 47 | def get_source_files(self): |
| 48 | from numpy.distutils.misc_util import get_script_files |
nothing calls this directly
no test coverage detected