renommage de app en minwii (ça va tout péter…).
[minwii.git] / src / app / start.py
diff --git a/src/app/start.py b/src/app/start.py
deleted file mode 100755 (executable)
index dd0b0d5..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-"""
-lancement de l'application winwii
-
-$Id$
-$URL$
-"""
-
-
-
-def main(wiimoteSupport) :
-    import pygame
-    from minwii import MinWii
-    pygame.init()
-    minwii = MinWii(wiimoteSupport=wiimoteSupport)
-    minwii.run()
-    pygame.quit()   
-
-if __name__ == "__main__" :
-    from os.path import realpath, sep
-    import sys
-    from optparse import OptionParser
-    
-    usage = "%prog [options]"
-    op = OptionParser(usage)
-    
-    op.add_option("--no-wii", dest="wiimoteSupport"
-                        , action="store_false"
-                        , default=True
-                        , help = u"désactivation du support des wiimotes"
-                                 u" [%default]")
-    
-    options, args = op.parse_args()
-    wiimoteSupport = options.wiimoteSupport
-
-    minwiipath = realpath(__file__).split(sep)
-    minwiipath = minwiipath[:-2]
-    minwiipath = sep.join(minwiipath)
-    sys.path.insert(1, minwiipath)
-    main(wiimoteSupport)
\ No newline at end of file