diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2015-12-29 11:32:06 +0100 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@gmail.com> | 2016-01-16 12:18:24 +0100 |
commit | f820c521b3d95a6c6642120b215d1fc5da803af9 (patch) | |
tree | ec8ac4a88b7d15b8f7df2f9716baa43682cc1f82 | |
parent | 4b0ed79a959ea8b6c5dfef67f32a0d5d7370fb91 (diff) | |
download | numpy-f820c521b3d95a6c6642120b215d1fc5da803af9.tar.gz |
MAINT: remove unnecessary setupegg.py file, now that we depend on setuptools.
-rwxr-xr-x | setupegg.py | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/setupegg.py b/setupegg.py deleted file mode 100755 index 36185db48..000000000 --- a/setupegg.py +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/env python -""" -A setup.py script to use setuptools, which gives egg goodness, etc. - -This is used to build installers for OS X through bdist_mpkg. - -Notes ------ -Using ``python setupegg.py install`` directly results in file permissions being -set wrong, with nose refusing to run any tests. To run the tests anyway, use:: - - >>> np.test(extra_argv=['--exe']) - -""" -from __future__ import division, absolute_import, print_function - -import sys -from setuptools import setup - -if sys.version_info[0] >= 3: - import imp - setupfile = imp.load_source('setupfile', 'setup.py') - setupfile.setup_package() -else: - exec(compile(open('setup.py').read(), 'setup.py', 'exec')) |