~ubuntu-branches/ubuntu/hardy/apturl/hardy

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2007-08-16 18:03:48 UTC
  • Revision ID: james.westby@ubuntu.com-20070816180348-50zrm5ax0h6truxd
Tags: 0.0+bzr20070816
* added i18n support
* added support for "minver"
* added support to add repositories and sections
* added suppor for removing sources again

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python
2
2
 
3
3
from distutils.core import setup
 
4
from DistUtilsExtra.command import *
4
5
import glob
5
6
import os
6
7
import re
33
34
                  ('share/firefox/defaults/pref/',
34
35
                   ["data/apturl.js"]),
35
36
                 ]+I18NFILES,
 
37
      cmdclass = { "build" : build_extra.build_extra,
 
38
                   "build_i18n" :  build_i18n.build_i18n,
 
39
                   "build_help" :  build_help.build_help,
 
40
                   "build_icons" :  build_icons.build_icons }
36
41
      )
37
42
 
38