/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: David Planella
  • Date: 2010-08-21 09:39:27 UTC
  • mto: This revision was merged to the branch mainline in revision 719.
  • Revision ID: david.planella@ubuntu.com-20100821093927-4xv23gqz0jr82how
Modified setup.py to include i18n command

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
from distutils.core import setup, Command
7
7
from distutils.command.install_data import install_data
8
8
from distutils.command.build import build
 
9
from DistUtilsExtra.command import *
9
10
import os
10
11
import sys
11
12
 
150
151
                                             'icons/tag-16.png',
151
152
                                             'icons/bug.png',
152
153
                                             'icons/bzr-icon-64.png']),
153
 
                    ('share/applications', ['bazaar-properties.desktop',
154
 
                                            'bzr-handle-patch.desktop',
155
 
                                            'bzr-notify.desktop']),
156
154
                    ('share/application-registry', ['bzr-gtk.applications']),
157
155
                    ('share/pixmaps', ['icons/bzr-icon-64.png']),
158
156
                    ('share/icons/hicolor/scalable/emblems',
166
164
        cmdclass={'install_data': InstallData,
167
165
                  'build_credits': CreateCredits,
168
166
                  'build': BuildData,
 
167
                  'build_i18n': build_i18n.build_i18n,
169
168
                  'check': Check}
170
169
        )