File: winsetup.py

package info (click to toggle)
bittornado 0.3.18-10
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 3,128 kB
  • ctags: 3,000
  • sloc: python: 16,587; sh: 4,400; makefile: 61
file content (16 lines) | stat: -rwxr-xr-x 452 bytes parent folder | download | duplicates (7)
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" ]  } ]
    )