~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Jonathan Riddell
  • Date: 2011-08-25 11:02:37 UTC
  • mto: This revision was merged to the branch mainline in revision 6103.
  • Revision ID: jriddell@canonical.com-20110825110237-h9pr1nyqbxofiaaf
install .mo files into bzrlib for standalone windows installer

Show diffs side-by-side

added added

removed removed

Lines of Context:
509
509
    # python's distutils-based win32 installer
510
510
    ARGS = {'scripts': ['bzr', 'tools/win32/bzr-win32-bdist-postinstall.py'],
511
511
            'ext_modules': ext_modules,
512
 
            # help pages and translations
513
 
            'data_files': find_docs() + I18N_FILES,
 
512
            # help pages
 
513
            'data_files': find_docs(),
514
514
            # for building pyrex extensions
515
515
            'cmdclass': command_classes,
516
516
           }
517
517
 
518
518
    ARGS.update(META_INFO)
519
519
    ARGS.update(BZRLIB)
 
520
    PKG_DATA['package_data']['bzrlib'].append('locale/*/LC_MESSAGES/*.mo')
520
521
    ARGS.update(PKG_DATA)
521
522
 
522
523
    setup(**ARGS)