/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: Breezy landing bot
  • Author(s): Martin
  • Date: 2018-11-18 19:21:24 UTC
  • mfrom: (7195.1.1 lint_E241_E251)
  • Revision ID: breezy.the.bot@gmail.com-20181118192124-eey41ul28f3xpbtn
Fix whitespace lint E241 and E251

Merged from https://code.launchpad.net/~gz/brz/lint_E241_E251/+merge/358966

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
# META INFORMATION FOR SETUP
33
33
# see http://docs.python.org/dist/meta-data.html
34
34
META_INFO = {
35
 
    'name':         'breezy',
36
 
    'version':      breezy.__version__,
37
 
    'maintainer':   'Breezy Developers',
38
 
    'maintainer_email':   'team@breezy-vcs.org',
39
 
    'url':          'https://www.breezy-vcs.org/',
40
 
    'description':  'Friendly distributed version control system',
41
 
    'license':      'GNU GPL v2',
 
35
    'name': 'breezy',
 
36
    'version': breezy.__version__,
 
37
    'maintainer': 'Breezy Developers',
 
38
    'maintainer_email': 'team@breezy-vcs.org',
 
39
    'url': 'https://www.breezy-vcs.org/',
 
40
    'description': 'Friendly distributed version control system',
 
41
    'license': 'GNU GPL v2',
42
42
    'download_url': 'https://launchpad.net/brz/+download',
43
43
    'long_description': get_long_description(),
44
44
    'classifiers': [
382
382
    # tbzrcache executables - a "console" version for debugging and a
383
383
    # GUI version that is generally used.
384
384
    tbzrcache = dict(
385
 
        script = os.path.join(tbzr_root, "scripts", "tbzrcache.py"),
386
 
        icon_resources = icon_resources,
387
 
        other_resources = other_resources,
 
385
        script=os.path.join(tbzr_root, "scripts", "tbzrcache.py"),
 
386
        icon_resources=icon_resources,
 
387
        other_resources=other_resources,
388
388
    )
389
389
    console_targets.append(tbzrcache)
390
390
 
395
395
 
396
396
    # ditto for the tbzrcommand tool
397
397
    tbzrcommand = dict(
398
 
        script = os.path.join(tbzr_root, "scripts", "tbzrcommand.py"),
399
 
        icon_resources = icon_resources,
400
 
        other_resources = other_resources,
 
398
        script=os.path.join(tbzr_root, "scripts", "tbzrcommand.py"),
 
399
        icon_resources=icon_resources,
 
400
        other_resources=other_resources,
401
401
    )
402
402
    console_targets.append(tbzrcommand)
403
403
    tbzrcommandw = tbzrcommand.copy()
561
561
            self.outfiles.extend([f + 'o' for f in compile_names])
562
562
    # end of class install_data_with_bytecompile
563
563
 
564
 
    target = py2exe.build_exe.Target(script = "brz",
565
 
                                     dest_base = "brz",
566
 
                                     icon_resources = [(0, 'brz.ico')],
567
 
                                     name = META_INFO['name'],
568
 
                                     version = version_str,
569
 
                                     description = META_INFO['description'],
570
 
                                     author = META_INFO['author'],
571
 
                                     copyright = "(c) Canonical Ltd, 2005-2010",
572
 
                                     company_name = "Canonical Ltd.",
573
 
                                     comments = META_INFO['description'],
574
 
                                     )
 
564
    target = py2exe.build_exe.Target(
 
565
        script="brz",
 
566
        dest_base="brz",
 
567
        icon_resources=[(0, 'brz.ico')],
 
568
        name=META_INFO['name'],
 
569
        version=version_str,
 
570
        description=META_INFO['description'],
 
571
        author=META_INFO['author'],
 
572
        copyright="(c) Canonical Ltd, 2005-2010",
 
573
        company_name="Canonical Ltd.",
 
574
        comments=META_INFO['description'],
 
575
    )
575
576
    gui_target = copy.copy(target)
576
577
    gui_target.dest_base = "bzrw"
577
578