witten
/
luminotes
Archived
1
0
Fork 0

Even more general-purpose.

This commit is contained in:
Dan Helfman 2008-08-21 14:58:36 -07:00
parent d28d97e3a5
commit fccd250ef9
1 changed files with 9 additions and 1 deletions

View File

@ -1,8 +1,12 @@
import sys
#import py2exe
from glob import glob
from distutils.core import setup, Distribution
try:
import py2exe
except ImportError:
pass
def files( path ):
if sys.platform.startswith( "win" ):
@ -13,7 +17,11 @@ def files( path ):
class Luminotes( Distribution ):
def __init__( self, attrs ):
self.com_server = []
self.services = []
self.windows = []
self.console = [ "luminotes.py" ]
self.zipfile = "luminotes.zip"
Distribution.__init__( self, attrs )