diff options
author | cliechti <cliechti@f19166aa-fa4f-0410-85c2-fa1106f25c8a> | 2009-07-30 21:36:06 +0000 |
---|---|---|
committer | cliechti <cliechti@f19166aa-fa4f-0410-85c2-fa1106f25c8a> | 2009-07-30 21:36:06 +0000 |
commit | 62ca0c342cf5b562b303364f740d7eba77a21ed2 (patch) | |
tree | bc94926c101b18bd816f8c8ccc916922dec5ac22 /examples/setup_demo.py | |
parent | 3509fba7dc90b3fc6f18687993547af6d4cc398d (diff) | |
download | pyserial-git-release2_5_rc1.tar.gz |
- create tag for 2.5-rc1release2_5_rc1
- fix name of old 0.2 tag
Diffstat (limited to 'examples/setup_demo.py')
-rw-r--r-- | examples/setup_demo.py | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/examples/setup_demo.py b/examples/setup_demo.py new file mode 100644 index 0000000..854c0b9 --- /dev/null +++ b/examples/setup_demo.py @@ -0,0 +1,35 @@ +# This is a setup.py example script for the use with py2exe +from distutils.core import setup +import py2exe +import sys, os + +#this script is only useful for py2exe so just run that distutils command. +#that allows to run it with a simple double click. +sys.argv.append('py2exe') + +#get an icon from somewhere.. the python installation should have one: +icon = os.path.join(os.path.dirname(sys.executable), 'py.ico') + +setup( + options = {'py2exe': { + 'excludes': ['javax.comm'], + 'optimize': 2, + 'dist_dir': 'dist', + } + }, + + name = "wxTerminal", + windows = [ + { + 'script': "wxTerminal.py", + 'icon_resources': [(0x0004, icon)] + }, + ], + zipfile = "stuff.lib", + + description = "Simple serial terminal application", + version = "0.1", + author = "Chris Liechti", + author_email = "cliechti@gmx.net", + url = "http://pyserial.sf.net", +) |