commit 90c660140dd1b8114a2a2bff1e8ba637b49fff3a Author: David Fifield david@bamsoftware.com Date: Thu Mar 14 22:55:58 2013 -0700
Name the py2exe zipfile so it's clear it's a py2exe thing.
Hopefully it will make the purpose of the file less mysterious in an extracted directory than "flashproxy.zip". Probably we can find a way to share library files that are used both in flash proxy and pyobfsproxy. --- setup.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/setup.py b/setup.py index c765e2b..9b55930 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ dist_path = os.path.join(os.environ["PY2EXE_TMPDIR"], "dist")
setup( console=["flashproxy-client", "flashproxy-reg-email", "flashproxy-reg-http"], - zipfile="flashproxy.zip", + zipfile="py2exe-flashproxy.zip", options={ "build": { "build_base": build_path }, "py2exe": {