/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Jelmer Vernooij
  • Date: 2018-11-16 13:15:40 UTC
  • mto: This revision was merged to the branch mainline in revision 7178.
  • Revision ID: jelmer@jelmer.uk-20181116131540-ml46q9419nr52kby
Fix E231.

Show diffs side-by-side

added added

removed removed

Lines of Context:
487
487
        for root, dirs, files in os.walk('doc'):
488
488
            r = []
489
489
            for f in files:
490
 
                if (os.path.splitext(f)[1] in ('.html','.css','.png','.pdf')
 
490
                if (os.path.splitext(f)[1] in ('.html', '.css', '.png', '.pdf')
491
491
                        or f == 'quick-start-summary.svg'):
492
492
                    r.append(os.path.join(root, f))
493
493
            if r:
563
563
 
564
564
    target = py2exe.build_exe.Target(script = "brz",
565
565
                                     dest_base = "brz",
566
 
                                     icon_resources = [(0,'brz.ico')],
 
566
                                     icon_resources = [(0, 'brz.ico')],
567
567
                                     name = META_INFO['name'],
568
568
                                     version = version_str,
569
569
                                     description = META_INFO['description'],