0f0200f2c9e6c8d6d5dcb8aea6ade9a95ca069a7
[odoo/odoo.git] / bin / addons / base / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
6 #    Copyright (C) 2010 OpenERP s.a. (<http://openerp.com>).
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU Affero General Public License as
10 #    published by the Free Software Foundation, either version 3 of the
11 #    License, or (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 Affero General Public License for more details.
17 #
18 #    You should have received a copy of the GNU Affero General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23
24 {
25     'name': 'Base',
26     'version': '1.2',
27     'category': 'Generic Modules/Base',
28     'description': """The kernel of OpenERP, needed for all installation.""",
29     'author': 'OpenERP s.a.',
30     'maintainer': 'OpenERP s.a.',
31     'website': 'http://www.openerp.com',
32     'depends': [],
33     'init_xml': [
34         'base_data.xml',
35         'security/base_security.xml',
36         'base_menu.xml',
37         'res/res_security.xml',
38         'res/res_config.xml',
39         'maintenance/maintenance_security.xml',
40         'data/res.country.state.csv'
41     ],
42     'update_xml': [
43         'base_update.xml',
44         'ir/wizard/wizard_menu_view.xml',
45         'ir/ir.xml',
46         'ir/workflow/workflow_view.xml',
47         'module/module_wizard.xml',
48         'module/module_view.xml',
49         'module/module_web_view.xml',
50         'module/module_data.xml',
51         'module/module_report.xml',
52         'res/res_request_view.xml',
53         'res/res_lang_view.xml',
54         'res/res_log_view.xml',
55         'res/res_company_view.xml',
56         'res/partner/partner_report.xml',
57         'res/partner/partner_view.xml',
58         'res/partner/partner_wizard.xml',
59         'res/bank_view.xml',
60         'res/country_view.xml',
61         'res/res_currency_view.xml',        
62         'res/partner/crm_view.xml',
63         'res/partner/wizard/partner_sms_send_view.xml',
64         'res/partner/partner_data.xml',
65         'res/ir_property_view.xml',
66         'security/base_security.xml',
67         'maintenance/maintenance_view.xml',
68         'security/ir.model.access.csv'
69
70     ],
71     'demo_xml': [
72         'base_demo.xml',
73         'res/partner/partner_demo.xml',
74         'res/partner/crm_demo.xml',
75     ],
76     'test': [
77         'test/base_test.xml',
78         #'test/base_test.yml'
79         'test/test_context.xml',
80         'bug_lp541545.xml',
81     ],
82     'installable': True,
83     'active': True,
84     'certificate': '0076807797149',
85 }
86 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: