[FIX] website_forum_doc: forum.documentation.stage readable by all
[odoo/odoo.git] / addons / l10n_gt / __openerp__.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 # Copyright (c) 2009-2010 Soluciones Tecnologócias Prisma S.A. All Rights Reserved.
5 # José Rodrigo Fernández Menegazzo, Soluciones Tecnologócias Prisma S.A.
6 # (http://www.solucionesprisma.com)
7 #
8 # This program is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23 #
24 # This module provides a minimal Guatemalan chart of accounts that can be use
25 # to build upon a more complex one.  It also includes a chart of taxes and
26 # the Quetzal currency.
27 #
28 # This module is based on the UK minimal chart of accounts:
29 # Copyright (c) 2004-2009 Seath Solutions Ltd. All Rights Reserved.
30 # Geoff Gardiner, Seath Solutions Ltd (http://www.seathsolutions.com/)
31 #
32 # This module works with OpenERP 6.0
33 #
34
35 {
36     'name': 'Guatemala - Accounting',
37     'version': '3.0',
38     'category': 'Localization/Account Charts',
39     'description': """
40 This is the base module to manage the accounting chart for Guatemala.
41 =====================================================================
42
43 Agrega una nomenclatura contable para Guatemala. También icluye impuestos y
44 la moneda del Quetzal. -- Adds accounting chart for Guatemala. It also includes
45 taxes and the Quetzal currency.""",
46     'author': 'José Rodrigo Fernández Menegazzo',
47     'website': 'http://solucionesprisma.com/',
48     'depends': ['base', 'account', 'account_chart'],
49     'data': [
50         'account_types.xml',
51         'account_chart.xml',
52         'account_tax.xml',
53         'l10n_gt_base.xml',
54     ],
55     'demo': [],
56     'installable': True,
57     'images': ['images/config_chart_l10n_gt.jpeg','images/l10n_gt_chart.jpeg'],
58 }
59 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: