summaryrefslogtreecommitdiff
path: root/scipy/distutils/command/install_data.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2005-09-14 22:28:28 +0000
committerTravis Oliphant <oliphant@enthought.com>2005-09-14 22:28:28 +0000
commit61b48697e440f76b2337c790ec5ca763cd55200b (patch)
treeda64ece2ba0b6b97deb51c36ca320c64102e9baa /scipy/distutils/command/install_data.py
parent575d373479c63a42bc4a729a058da31a74e75d3e (diff)
downloadnumpy-61b48697e440f76b2337c790ec5ca763cd55200b.tar.gz
Moving things to live under scipy
Diffstat (limited to 'scipy/distutils/command/install_data.py')
-rw-r--r--scipy/distutils/command/install_data.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/scipy/distutils/command/install_data.py b/scipy/distutils/command/install_data.py
new file mode 100644
index 000000000..e170ba4d8
--- /dev/null
+++ b/scipy/distutils/command/install_data.py
@@ -0,0 +1,14 @@
+from distutils.command.install_data import *
+from distutils.command.install_data import install_data as old_install_data
+
+#data installer with improved intelligence over distutils
+#data files are copied into the project directory instead
+#of willy-nilly
+class install_data (old_install_data):
+
+ def finalize_options (self):
+ self.set_undefined_options('install',
+ ('install_lib', 'install_dir'),
+ ('root', 'root'),
+ ('force', 'force'),
+ )