summaryrefslogtreecommitdiff
path: root/numpy/distutils/command/install_clib.py
blob: c6934e6f858d11cc78c177f0090602e6cccba90a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 []