From e5e78f06ee3a682f2657ee4456bed5aa3ce5e529 Mon Sep 17 00:00:00 2001 From: Agustin Zubiaga Date: Mon, 31 Dec 2012 07:26:00 +0000 Subject: Initial commit Signed-off-by: Agustin Zubiaga --- 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() -- cgit v0.9.1