[IMP] barcodes: use builtin python sets when it makes sense
[odoo/odoo.git] / addons / l10n_cr / __openerp__.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    __openerp__.py
5 #    l10n_cr_account
6 #    First author: Carlos Vásquez <carlos.vasquez@clearcorp.co.cr> (ClearCorp S.A.)
7 #    Copyright (c) 2010-TODAY ClearCorp S.A. (http://clearcorp.co.cr). All rights reserved.
8 #
9 #    Redistribution and use in source and binary forms, with or without modification, are
10 #    permitted provided that the following conditions are met:
11 #
12 #        1. Redistributions of source code must retain the above copyright notice, this list of
13 #          conditions and the following disclaimer.
14 #
15 #        2. Redistributions in binary form must reproduce the above copyright notice, this list
16 #          of conditions and the following disclaimer in the documentation and/or other materials
17 #          provided with the distribution.
18 #
19 #    THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER> ``AS IS'' AND ANY EXPRESS OR IMPLIED
20 #    WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
21 #    FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> OR
22 #    CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 #    CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24 #    SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
25 #    ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26 #    NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
27 #    ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 #
29 #    The views and conclusions contained in the software and documentation are those of the
30 #    authors and should not be interpreted as representing official policies, either expressed
31 #    or implied, of ClearCorp S.A..
32 #
33 ##############################################################################
34
35 {
36     'name': 'Costa Rica - Accounting',
37     'version': '0.1',
38     'url': 'http://launchpad.net/openerp-costa-rica',
39     'author': 'ClearCorp S.A.',
40     'website': 'http://clearcorp.co.cr',
41     'category': 'Localization/Account Charts',
42     'description': """
43 Chart of accounts for Costa Rica.
44 =================================
45
46 Includes:
47 ---------
48     * account.type
49     * account.account.template
50     * account.tax.template
51     * account.tax.code.template
52     * account.chart.template
53
54 Everything is in English with Spanish translation. Further translations are welcome,
55 please go to http://translations.launchpad.net/openerp-costa-rica.
56     """,
57     'depends': ['account', 'account_chart', 'base'],
58     'demo': [],
59     'data': [
60         'l10n_cr_base_data.xml',
61         'data/account_account_type.xml',
62         'data/account_account_template.xml',
63         'data/account_tax_code_template.xml',
64         'data/account_chart_template.xml',
65         'data/account_tax_template.xml',
66         'l10n_wizard.xml',
67     ],
68     'license': 'Other OSI approved licence',
69     'installable': True,
70     'auto_install': False,
71     'images': ['images/config_chart_l10n_cr.jpeg','images/l10n_cr_chart.jpeg'],
72 }
73
74 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: