From fa93d8563083d477ae19288af84bdd8147c25788 Mon Sep 17 00:00:00 2001 From: Danilo Assis Nobre dos Santos Silva Date: Mon, 26 Sep 2016 23:48:31 -0300 Subject: [PATCH] Add servent_setup.py to generate servent.exe, the executable responsible to integrate UnityPlayer to NVDA software --- servent_setup.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+), 0 deletions(-) create mode 100644 servent_setup.py diff --git a/servent_setup.py b/servent_setup.py new file mode 100644 index 0000000..d16e453 --- /dev/null +++ b/servent_setup.py @@ -0,0 +1,17 @@ +# -*- coding: utf-8 -*- +''' +author: Danilo Assis +date: 26/09/2016 + + +This code is used to generate a binary executable file + +You have to include inside PYTHON_PATH environment variable the path to nvda source files to compile correctly servent.py + +''' +from distutils.core import setup +import py2exe + +print "Usage: \npython servent_setup.exe py2exe\nInside the file you define whats the name of your module." +raw_input("Do you understand? Y/N ") +setup(console=['source\\servent.py']) \ No newline at end of file -- libgit2 0.21.2