From d43cca556dac90fac647dd0f857f46e49b01c445 Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Thu, 11 Dec 2008 03:52:12 +0000 Subject: [PATCH] Use distutils.install instead of setuptools --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2584ec56d..67abdcd48 100644 --- a/setup.py +++ b/setup.py @@ -28,6 +28,7 @@ from setuptools import setup, find_packages, Extension from distutils import cmd, sysconfig from distutils.command.build import build as _build from distutils.command.clean import clean as _clean +from distutils.command.install import install import msgfmt import os @@ -308,7 +309,8 @@ cmdclass = { 'build_trans': build_trans, 'build_plugins': build_plugins, 'clean_plugins': clean_plugins, - 'clean': clean + 'clean': clean, + 'install': install } # Data files to be installed to the system