Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAgustin Zubiaga <aguz@sugarlabs.org>2012-12-31 07:26:00 (GMT)
committer Agustin Zubiaga <aguz@sugarlabs.org>2012-12-31 07:26:00 (GMT)
commite5e78f06ee3a682f2657ee4456bed5aa3ce5e529 (patch)
tree58909d0eeb1fbce9c1f7821c3ee07046204a9803
Initial commit
Signed-off-by: Agustin Zubiaga <aguz@sugarlabs.org>
-rw-r--r--.gitignore6
-rw-r--r--activity.py0
-rw-r--r--activity/activity.info8
-rw-r--r--setup.py21
4 files changed, 35 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..94e7d25
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,6 @@
+*.mo
+*.pyo
+*.pyc
+*.xo
+*~
+dist/
diff --git a/activity.py b/activity.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/activity.py
diff --git a/activity/activity.info b/activity/activity.info
new file mode 100644
index 0000000..c0aed7e
--- /dev/null
+++ b/activity/activity.info
@@ -0,0 +1,8 @@
+[Activity]
+name = Count My Steps
+summary = Count your steps during the day and surprise yourself with the result!
+activity_version = 1
+bundle_id = org.sugarlabs.CountMySteps
+exec = sugar-activity activity.CountMySteps -s
+icon = activity-icon
+license = GPLv3+
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..c60f4d0
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,21 @@
+#!/usr/bin/env python
+
+# Copyright (C) 2006, Red Hat, Inc.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+from sugar3.activity import bundlebuilder
+
+bundlebuilder.start()