# HG changeset patch # User Pierre-Yves David # Date 1287136123 -7200 # Node ID 38c2ff52cfcab2323d6eecb884c3b8d38baa4508 # Parent c1661ea815dcd680db6ec4bcd12804647b442b45 [pkg] fix install_data import not present in setuptools diff -r c1661ea815dc -r 38c2ff52cfca setup.py --- a/setup.py Fri Oct 15 11:41:10 2010 +0200 +++ b/setup.py Fri Oct 15 11:48:43 2010 +0200 @@ -31,13 +31,12 @@ raise ImportError() # do as there is no setuptools from setuptools import setup from setuptools.command import install_lib - from setuptools.command import install_data USE_SETUPTOOLS = True except ImportError: from distutils.core import setup from distutils.command import install_lib - from distutils.command import install_data USE_SETUPTOOLS = False +from distutils.command import install_data # import required features from __pkginfo__ import modname, version, license, description, web, \