*.pyc
dist/
MANIFEST
+Wind_off_of_Heaven_s_Lake.egg-info
-include config
+include config OPEN-GAME
recursive-include resource *
+recursive-include lake_of_heavenly_wind *
+recursive-include lib *
+prune lib/pgfw/.git
prune resource/local
+global-exclude *.pyc .git*
[setup]
contact-name = Frank DeMarco
license = Public Domain
-contact-email = frank.s.demarco@gmail.com
-title = Wind from Heaven's Lake
+contact-email = if.self.end@gmail.com
+title = Wind off of Heaven's Lake
url = http://A-O.in/
summary = Consult the oracle while protecting your pulp supply!
-platform = Linux
+platforms = Linux, Windows, Mac OS X
version = 0.2.0
-init-script = lake-of-heavenly-wind
+init-script = OPEN-GAME
package-root = lake_of_heavenly_wind
+additional-packages = lib
+osx-includes = resource, lib, lake_of_heavenly_wind, config
[display]
font = wt009.ttf
-Subproject commit a0aba9a0bb527ec7f3d7269cdd522448560a99c3
+Subproject commit 42f6fcb9a28c5297cfedbe35cb0785e10917112b
+++ /dev/null
-from lake_of_heavenly_wind.pgfw.SetupWin import SetupWin
-
-if __name__ == "__main__":
- SetupWin().setup()
-import os
-delattr(os, "link")
+from sys import platform
-from lake_of_heavenly_wind.pgfw.Setup import Setup
if __name__ == "__main__":
- Setup().setup()
+ if platform == "darwin":
+ from lib.pgfw.pgfw.SetupOSX import SetupOSX
+ SetupOSX().setup()
+ elif platform == "win32":
+ from lib.pgfw.pgfw.SetupWin import SetupWin
+ SetupWin().setup()
+ else:
+ from lib.pgfw.pgfw.Setup import Setup
+ Setup().setup()