Add setup.py file for building Windows installer
authorEthan White <ethan@weecology.org>
Sun, 4 May 2014 17:31:16 +0000 (13:31 -0400)
committerW. Trevor King <wking@tremily.us>
Mon, 16 Jun 2014 04:50:20 +0000 (21:50 -0700)
This setup.py file allows building an executable version of the
installer that doesn't require an external Python installation.

setup.py [new file with mode: 0644]

diff --git a/setup.py b/setup.py
new file mode 100644 (file)
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']
+         )