Patch few bugs in distutils.ext.

This version seems able to install at list the empty package
This commit is contained in:
2015-05-25 16:55:09 +02:00
parent fdfa51a8c7
commit 5948858a72
7 changed files with 326 additions and 40 deletions

View File

@ -4,12 +4,7 @@ Created on 6 oct. 2014
@author: coissac
'''
try:
from setuptools.command.install import install as install_ori
has_setuptools=True
except ImportError:
from distutils.command.install import install as install_ori
has_setuptools=False
from distutils.command.install import install as install_ori
class install(install_ori):