~ubuntu-branches/ubuntu/quantal/pyserial/quantal

« back to all changes in this revision

Viewing changes to examples/setup-miniterm-py2exe.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2008-06-24 19:14:57 UTC
  • mfrom: (3.1.4 lenny)
  • Revision ID: james.westby@ubuntu.com-20080624191457-l7snsahtf9ngtuti
Tags: 2.3-1
* New upstream version.
* Update watch file. Closes: #450106.
* Mention the upstream name in the package description. Closes: #459590.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# setup script for py2exe to create the miniterm.exe
 
2
# $Id: setup-miniterm-py2exe.py,v 1.1 2005/09/21 19:51:19 cliechti Exp $
 
3
 
 
4
from distutils.core import setup
 
5
import glob, sys, py2exe, os
 
6
 
 
7
sys.path.append('..')
 
8
 
 
9
sys.argv.extend("py2exe --bundle 1".split())
 
10
 
 
11
setup(
 
12
    name='miniterm',
 
13
    #~ version='0.5',
 
14
    zipfile=None,
 
15
    options = {"py2exe":
 
16
        {
 
17
            'dist_dir': 'bin',
 
18
            'excludes': ['javax.comm'],
 
19
        }
 
20
    },
 
21
    console = [
 
22
        #~ "miniterm_exe_wrapper.py",
 
23
        "miniterm.py",
 
24
    ],
 
25
)