~ubuntu-branches/ubuntu/trusty/bittornado/trusty-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env python

# Written by Bram Cohen
# see LICENSE.txt for license information


from distutils.core import setup
import py2exe

setup(
    windows = [ { 'script': 'btdownloadgui.py',
                  'icon_resources': [ (1, 'icon_bt.ico')],
                    'excludes': ["pywin", "pywin.debugger", "pywin.debugger.dbgcon",
                "pywin.dialogs", "pywin.dialogs.list",
                "Tkconstants","Tkinter","tcl" ]  } ]
    )