From 953310b7e18bdb012dae2fcc0184bc63f1c30c0c Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Thu, 29 Mar 2012 16:55:17 +0200 Subject: Work on OSM export - simplify KML import --- chimere/__init__.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'chimere/__init__.py') diff --git a/chimere/__init__.py b/chimere/__init__.py index 1b2fc61..a7083c7 100644 --- a/chimere/__init__.py +++ b/chimere/__init__.py @@ -7,3 +7,10 @@ from django.utils.translation import ugettext as _ # templates/chimere/edit.html, templates/chimere/edit_route.html _(u"Multimedia files") _(u"Picture files") + +VERSION = (2, 0) + +def get_version(): + return u'.'.join((unicode(num) for num in VERSION)) + +__version__ = get_version() -- cgit v1.2.3