commit 6e68591e1a40da8fc9a04061ec8954611091aa79
Author: David Fifield <david(a)bamsoftware.com>
Date: Tue Oct 22 21:01:10 2013 -0700
Minimal py2exe setup.py for obfs-flash-client.
---
setup.py | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..2046d96
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,13 @@
+from distutils.core import setup
+import py2exe
+
+setup(
+ console=["obfs-flash-client"],
+ zipfile="py2exe-obfs-flash-client.zip",
+ options={
+ "py2exe": {
+ "includes": ["pyptlib", "twisted"],
+ "packages": ["ometa", "terml"],
+ },
+ },
+)