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