32
32
# META INFORMATION FOR SETUP
33
33
# see http://docs.python.org/dist/meta-data.html
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',
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(),
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,
389
389
console_targets.append(tbzrcache)
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,
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
564
target = py2exe.build_exe.Target(script = "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'],
564
target = py2exe.build_exe.Target(
567
icon_resources=[(0, 'brz.ico')],
568
name=META_INFO['name'],
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
576
gui_target = copy.copy(target)
576
577
gui_target.dest_base = "bzrw"