diff options
author | David Cournapeau <cournape@gmail.com> | 2008-08-20 23:02:44 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-08-20 23:02:44 +0000 |
commit | 4fd1035c1080134b4be9e26ea7dd7f5eaf3c1c4b (patch) | |
tree | 98a43fe87663bb72c10f2cfef1dc938cee9a264a | |
parent | c2329b05666c60955c42b431ea1ed9562a00c6bc (diff) | |
download | numpy-4fd1035c1080134b4be9e26ea7dd7f5eaf3c1c4b.tar.gz |
Add a setupsconsegg.py file to build with scons and setuptools.
-rwxr-xr-x | setupsconsegg.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/setupsconsegg.py b/setupsconsegg.py new file mode 100755 index 000000000..2baae1867 --- /dev/null +++ b/setupsconsegg.py @@ -0,0 +1,7 @@ +#!/usr/bin/env python +""" +A setup.py script to use setuptools, which gives egg goodness, etc. +""" + +from setuptools import setup +execfile('setupscons.py') |