projects
/
swc-setup-windows-installer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5d91596
)
Add setup.py file for building Windows installer
author
Ethan White
<ethan@weecology.org>
Sun, 4 May 2014 17:31:16 +0000
(13:31 -0400)
committer
W. 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]
patch
|
blob
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']
+ )