Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlan Aguiar <alanjas@hotmail.com>2012-10-19 04:56:08 (GMT)
committer Alan Aguiar <alanjas@hotmail.com>2012-10-19 04:56:08 (GMT)
commit93b9cec15655f709504a5804800ba8d443d1ad42 (patch)
tree3910d7b88d10653356fd8c3d21e35b1aeb1b84e5
parentba56c6401222eb940f9a3be5ff25c0fdcf1043f7 (diff)
add setup.py and encode to .py files
-rwxr-xr-x[-rw-r--r--]activity.py2
-rwxr-xr-x[-rw-r--r--]reversi.py2
-rwxr-xr-xsetup.py6
-rwxr-xr-x[-rw-r--r--]sugargame/__init__.py0
-rwxr-xr-x[-rw-r--r--]sugargame/canvas.py0
-rwxr-xr-x[-rw-r--r--]sugargame/event.py0
6 files changed, 10 insertions, 0 deletions
diff --git a/activity.py b/activity.py
index babd26d..3d5260d 100644..100755
--- a/activity.py
+++ b/activity.py
@@ -1,3 +1,5 @@
+#! /usr/bin/env python
+# -*- coding: utf-8 -*-
from gettext import gettext as _
diff --git a/reversi.py b/reversi.py
index b1ee9c1..a17accf 100644..100755
--- a/reversi.py
+++ b/reversi.py
@@ -1,3 +1,5 @@
+#! /usr/bin/env python
+# -*- coding: utf-8 -*-
#
# Reversi.py - An implementation of Reversi for OLPC laptops.
# Copyright (C) 2007 David Lee Ludwig <dludwig at pobox dot com>
diff --git a/setup.py b/setup.py
new file mode 100755
index 0000000..8c00558
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,6 @@
+#! /usr/bin/env python
+# -*- coding: utf-8 -*-
+
+from sugar.activity import bundlebuilder
+if __name__ == "__main__":
+ bundlebuilder.start() \ No newline at end of file
diff --git a/sugargame/__init__.py b/sugargame/__init__.py
index 439eb0c..439eb0c 100644..100755
--- a/sugargame/__init__.py
+++ b/sugargame/__init__.py
diff --git a/sugargame/canvas.py b/sugargame/canvas.py
index 980cb73..980cb73 100644..100755
--- a/sugargame/canvas.py
+++ b/sugargame/canvas.py
diff --git a/sugargame/event.py b/sugargame/event.py
index 4cc3be8..4cc3be8 100644..100755
--- a/sugargame/event.py
+++ b/sugargame/event.py