next release will be 0.13.4
[gajim.git] / src / common / defs.py
blob8e4f6501a2b253dd10977b231cef6d48daf1c7f0
1 # -*- coding:utf-8 -*-
2 ## src/common/defs.py
3 ##
4 ## Copyright (C) 2006 Nikos Kouremenos <kourem AT gmail.com>
5 ## Copyright (C) 2006-2008 Yann Leboulanger <asterix AT lagaule.org>
6 ## Jean-Marie Traissard <jim AT lapin.org>
7 ## Copyright (C) 2007 Brendan Taylor <whateley AT gmail.com>
8 ## Tomasz Melcer <liori AT exroot.org>
9 ## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
11 ## This file is part of Gajim.
13 ## Gajim is free software; you can redistribute it and/or modify
14 ## it under the terms of the GNU General Public License as published
15 ## by the Free Software Foundation; version 3 only.
17 ## Gajim is distributed in the hope that it will be useful,
18 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ## GNU General Public License for more details.
22 ## You should have received a copy of the GNU General Public License
23 ## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
26 docdir = '../'
27 datadir = '../'
28 localedir = '../po'
30 version = '0.13.4'
32 import sys, os.path
33 for base in ('.', 'common'):
34 sys.path.append(os.path.join(base, '.libs'))
36 # vim: se ts=3: