|
From: David A. <DAn...@co...> - 2003-12-11 06:18:12
|
Using py2exe-0.5.0a5 (the latest version from sourceforge) I was able to
build and run "stars.exe".
I used the following "setup.py" file and ran "python setup.py py2exe" - t=
he
build process gave a warning about a missing "dotblas" (part of the
Numeric package I believe), but the resulting executeable ran with no
problem. I also built "stonehenge.exe" - it also worked.
--- file setup.py
from distutils.core import setup
import py2exe
setup(
console =3D ["stars.py"],
)
|