00001 """
00002 This is a setup.py script generated by py2applet
00003
00004 Usage:
00005 python setup.py py2app
00006 """
00007
00008 from setuptools import setup
00009
00010 APP = ['biosphere_admin.py']
00011 DATA_FILES = ['bitmaps',
00012 'prefs']
00013 OPTIONS = {'argv_emulation': True,
00014 'iconfile' : 'sphere.icns',
00015 'plist': dict(
00016 CFBundleName = "Bio-SPHERE",
00017 CFBundleShortVersionString = "0.0.3",
00018 CFBundleGetInfoString = "Bio-SPHERE GUI 0.0.3",
00019 CFBundleExecutable = "Bio-SPHERE GUI",
00020 CFBundleIdentifier = "biosphere.sf.net",
00021 )
00022 }
00023
00024 setup(
00025 app=APP,
00026 data_files=DATA_FILES,
00027 options={'py2app': OPTIONS},
00028 setup_requires=['py2app'],
00029 )
00030
00031