RE:[Boa Constr] Distributing boa apps
Status: Beta
Brought to you by:
riaan
From: Finbarr O'K. <fo...@mc...> - 2002-10-18 09:11:57
|
Aaron On Windows platform I use the py2exe module and just create a setup.py and run the following command:- PYTHON setup.py py2exe -w The -w option is used if you don't want a MSDOS type command window to be opened The setup.py is very simple and just includes something like:- from distutils.core import setup import py2exe setup(name = exe_name, version = ver, scripts = script_names, ) -----Original Message----- Subject: [Boa Constr] Distributing boa apps What would be the best way to distribute a boa app to users w/o python installed on thier machine? I am playing with the installer from http://www.mcmillan-inc.com/install5_ann.html but I thought I would ask here. Thanks, -Aaron Held |