Use distutils.install instead of setuptools

This commit is contained in:
Andrew Resch 2008-12-11 03:52:12 +00:00
parent 466ac404ec
commit 06354aa8cb
1 changed files with 3 additions and 1 deletions

View File

@ -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