Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/info.py
diff options
context:
space:
mode:
Diffstat (limited to 'info.py')
-rw-r--r--info.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/info.py b/info.py
index c0cb741..6b25d1d 100644
--- a/info.py
+++ b/info.py
@@ -53,7 +53,9 @@ except:
generic_name = _('Mathematical Function Plotter')
lower_name = 'graph-plotter'
-copyright = 'Copyright © 2012 Daniel Francis'
+
+copyright_data = {'year': '2012-2013', 'holder': 'Daniel Francis'}
+copyright = 'Copyright © %s %s' % (copyright_data['year'], copyright_data['holder'])
version = '9'
description = _("Plot mathematical functions and study maths.")
authors = ['Daniel Francis <francis@sugarlabs.org>']
@@ -71,3 +73,7 @@ license = 'GPLv3'
license_file = open('COPYING')
license_content = license_file.read()
license_file.close()
+
+git = 'git://git.sugarlabs.org/graph-plotter/mainline.git'
+git_browser = 'http://git.sugarlabs.org/graph-plotter/mainline'
+deb_depends = ['python-numpy', 'python-gi-cairo', 'gir1.2-gtk-3.0']