From ad62d6c87cc02beeb5b34df28996defa28d380af Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Thu, 21 Aug 2008 15:01:47 -0700 Subject: [PATCH] Added some missing members to make py2exe happy. --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index 2e82183..942a3ef 100644 --- a/setup.py +++ b/setup.py @@ -17,9 +17,12 @@ def files( path ): class Luminotes( Distribution ): def __init__( self, attrs ): + self.ctypes_com_server = [] self.com_server = [] self.services = [] self.windows = [] + self.service = [] + self.isapi = [] self.console = [ "luminotes.py" ] self.zipfile = "luminotes.zip" Distribution.__init__( self, attrs )