From 512ab7f896315352dcaeac57ff78edaedddc7b4e Mon Sep 17 00:00:00 2001 From: Ethan White Date: Sun, 4 May 2014 13:31:16 -0400 Subject: [PATCH] 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. --- setup.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 setup.py 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'] + ) -- 2.26.2