Files
obitools3/distutils.ext/obidistutils/command/install.py
Eric Coissac 5948858a72 Patch few bugs in distutils.ext.
This version seems able to install at list the empty package
2015-05-25 16:55:09 +02:00

15 lines
373 B
Python

'''
Created on 6 oct. 2014
@author: coissac
'''
from distutils.command.install import install as install_ori
class install(install_ori):
def __init__(self,dist):
install_ori.__init__(self, dist)
self.sub_commands.insert(0, ('build',lambda self: True))
self.sub_commands.append(('install_sphinx',lambda self: self.distribution.serenity))