CVS: python/win32 setup-combined-tools-py2exe.py,NONE,1.1
Chris Liechti <[email protected]>
| Newsgroups | gmane.comp.hardware.texas-instruments.msp430.gcc.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/mspgcc/python/win32
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3532/python/win32
Added Files:
setup-combined-tools-py2exe.py
Log Message:
- bugfix
- setup all python tools together and make only one shared library
--- NEW FILE: setup-combined-tools-py2exe.py ---
# setup script for py2exe to create the executeable of all the python tools
# this setup uses one shared zip file for the library to save space
#
# $Id: setup-combined-tools-py2exe.py,v 1.1 2005/12/30 03:47:50 cliechti Exp $
from distutils.core import setup
import glob, sys, py2exe, os
os.chdir('..')
sys.path.append('.')
sys.argv.append("py2exe")
setup(
name = 'http://mspgcc.sourceforge.net',
author="Chris Liechti",
author_email="[email protected]",
url="http://mspgcc.sourceforge.net/",
version = '1.0',
options = {"py2exe":
{
'dist_dir': 'bin',
'excludes': ['javax.comm', 'macpath', 'TERMIOS', 'FCNTL', 'os2emxpath', '_parjtag'],
'dll_excludes': ['HIL.dll', 'MSP430mspgcc.dll'],
'optimize': 2,
}
},
console = [
"msp430-dco.py",
"ihex2titext.py", "titext2ihex.py",
"msp430-ram-usage.py", "msp430-bsl.py", "msp430-jtag.py",
],
windows = [
{ 'script': "msp430-downloader.py",
'icon_resources': [(0x0001, 'win32/downloader.ico')]
},
],
zipfile = "lib/shared.zip",
)
-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems? Stop! Download the new AJAX search engine that makes
searching your log files as easy as surfing the web. DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click