From: robk-tahoe Date: Sat, 12 Jan 2008 01:42:27 +0000 (-0700) Subject: add confwiz to py2exe build X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=29277ed97bfa638432d25c0dfd39f67f9ace47df;p=tahoe-lafs%2Ftahoe-lafs.git add confwiz to py2exe build including setting up the windows xp look and feel stuff. --- diff --git a/windows/amdicon.ico b/windows/amdicon.ico new file mode 100644 index 00000000..616240ad Binary files /dev/null and b/windows/amdicon.ico differ diff --git a/windows/setup.py b/windows/setup.py index f401cc33..35cba7f4 100644 --- a/windows/setup.py +++ b/windows/setup.py @@ -3,11 +3,43 @@ import py2exe import glob +lnf_manifest = """ + + + +%s + + + + + + +""" + + setup_args = { 'name': 'Tahoe', 'description': 'Allmydata Tahoe distributated storage', 'author': 'Allmydata, Inc.', 'windows': [ + { + 'script': 'confwiz.py', + 'icon_resources': [(1, 'amdicon.ico')], + 'other_resources': [(24,1,lnf_manifest%'Allmydata Tahoe Config Wizard')], + }, ], 'console': [ 'tahoe.py',