blob: 86f0cb7b8a78b29f0cd818422ef6e916d157be1f (
plain)
1
2
3
4
5
6
7
8
9
|
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
|