~ev/python-apt/dont-leak-fds

« back to all changes in this revision

Viewing changes to setup.py

* debian/control:
  - updated for python-distutils-extra (>= 1.9.0)
* debian/python-apt.install:
  - fix i18n files

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
from distutils.core import setup, Extension
5
5
from distutils.sysconfig import parse_makefile
6
 
from DistUtilsExtra.distutils_extra import build_extra, build_l10n
 
6
from DistUtilsExtra.command import *
7
7
import glob, os, string
8
8
 
9
9
# The apt_pkg module
40
40
                    glob.glob('build/data/templates/*.info')),
41
41
                    ('share/python-apt/templates',
42
42
                    glob.glob('data/templates/*.mirrors'))],
43
 
      cmdclass = { "build" : build_extra,
44
 
                   "build_l10n" :  build_l10n },
 
43
      cmdclass = { "build" : build_extra.build_extra,
 
44
                   "build_i18n" :  build_i18n.build_i18n },
45
45
      license = 'GNU GPL',
46
46
      platforms = 'posix'
47
47
      )