# -*- coding:utf-8 -*- ## src/common/defs.py ## ## Copyright (C) 2006 Nikos Kouremenos ## Copyright (C) 2006-2013 Yann Leboulanger ## Copyright (C) 2006-2008 Jean-Marie Traissard ## Copyright (C) 2007 Brendan Taylor ## Tomasz Melcer ## Copyright (C) 2008 Jonathan Schleifer ## ## This file is part of Gajim. ## ## Gajim 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; version 3 only. ## ## Gajim 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 Gajim. If not, see . ## docdir = '../' basedir = '../' localedir = '../po' version = '0.16.10.0' import subprocess try: node = subprocess.Popen('hg tip --template "{node|short}"', shell=True, stdout=subprocess.PIPE).communicate()[0] if node: version += '-' + node.decode('utf-8') except Exception: pass import sys, os.path for base in ('.', 'common'): sys.path.append(os.path.join(base, '.libs'))