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