commit 33604e3309dd71b7c0ae65af0d6409a2c7ca7355 parent 554a07c1094bfe551170974d8f4b181a5f1360a4 Author: Anders Damsgaard <anders.damsgaard@geo.au.dk> Date: Sat, 15 Feb 2014 12:45:38 +0100 added windows build script Diffstat:
A | make-win-build.bat | | | 1 | + |
A | setup-win.py | | | 4 | ++++ |
2 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/make-win-build.bat b/make-win-build.bat @@ -0,0 +1 @@ +python setup-win.py py2exe diff --git a/setup-win.py b/setup-win.py @@ -0,0 +1,4 @@ +from distutils.core import setup +import py2exe + +setup(console=['cross-stitch.py'])