summaryrefslogtreecommitdiff
path: root/setuptools/command/install.py
blob: 82e7ebe835d309120ab2325095e067fd9adda716 (plain)
1
2
3
4
5
6
7
8
9
10
11
from distutils.command.install import install as _install

class install(_install):
    """Build dependencies before installation"""

    def has_dependencies(self):
        return self.distribution.has_dependencies()

    sub_commands = [('depends',has_dependencies)] + _install.sub_commands