From f6031b1cc38cd7cbb8eb642a634f2dde60e6b0db Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Thu, 21 Aug 2008 22:36:57 -0700 Subject: [PATCH] Changed from a console app to a Windows "GUI" app to prevent a big console box from popping up when the app is run. --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index fb2cede..267f606 100644 --- a/setup.py +++ b/setup.py @@ -19,10 +19,10 @@ class Luminotes( Distribution ): self.ctypes_com_server = [] self.com_server = [] self.services = [] - self.windows = [] + self.windows = [ "luminotes.py" ] + self.console = [] self.service = [] self.isapi = [] - self.console = [ "luminotes.py" ] self.zipfile = "lib\luminotes.zip" Distribution.__init__( self, attrs ) @@ -158,7 +158,7 @@ try: script = InnoScript("Luminotes", lib_dir, dist_dir, - self.console_exe_files, + self.windows_exe_files, self.lib_files, version = VERSION) print "*** creating the inno setup script***"