diff options
Diffstat (limited to 'numpy/distutils/command/install_clib.py')
-rw-r--r-- | numpy/distutils/command/install_clib.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/numpy/distutils/command/install_clib.py b/numpy/distutils/command/install_clib.py new file mode 100644 index 000000000..c6934e6f8 --- /dev/null +++ b/numpy/distutils/command/install_clib.py @@ -0,0 +1,19 @@ +import os +from distutils.core import Command + +class install_clib(Command): + description = "Command to install installable C libraries" + + user_options = [] + + def initialize_options(self): + pass + + def finalize_options(self): + pass + + def run (self): + pass + + def get_outputs(self): + return [] |