From: Ethan White Date: Sun, 4 May 2014 17:31:16 +0000 (-0400) Subject: Add setup.py file for building Windows installer X-Git-Tag: v0.1~7 X-Git-Url: http://git.tremily.us/?p=swc-setup-windows-installer.git;a=commitdiff_plain;h=512ab7f896315352dcaeac57ff78edaedddc7b4e Add setup.py file for building Windows installer This setup.py file allows building an executable version of the installer that doesn't require an external Python installation. --- diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..74f40e8 --- /dev/null +++ b/setup.py @@ -0,0 +1,6 @@ +from setuptools import setup +import py2exe + +setup(name='swc-windows-installer', + console=['swc-windows-installer.py'] + )