diff options
Diffstat (limited to 'command/install_data.py')
-rw-r--r-- | command/install_data.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/command/install_data.py b/command/install_data.py new file mode 100644 index 000000000..b72737f85 --- /dev/null +++ b/command/install_data.py @@ -0,0 +1,13 @@ +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'), + ) |