[FIX] module installation through -i module -d db --without-demo option corrected
[odoo/odoo.git] / addons / account / __terp__.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution   
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6 #    $Id$
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 {
25     "name" : "Accounting and financial management",
26     "version" : "1.1",
27     "depends" : ["product", "base", "process"],
28     "author" : "Tiny",
29     "description": """Financial and accounting module that covers:
30     General accounting
31     Cost / Analytic accounting
32     Third party accounting
33     Taxes management
34     Budgets
35     Customer and Supplier Invoices
36     Bank statements
37     """,
38     'author': 'Tiny',
39     'website': 'http://www.openerp.com',
40     'depends': ['product', 'base', 'process'],
41     'init_xml': [],
42     'update_xml': [
43         'security/account_security.xml',
44         'security/ir.model.access.csv',
45         'account_menuitem.xml',
46         'account_wizard.xml',
47         'account_view.xml',
48         'account_end_fy.xml',
49         'account_invoice_view.xml',
50         'account_report.xml',
51         'partner_view.xml',
52         'data/account_invoice.xml',
53         'data/account_data2.xml',
54         'account_invoice_workflow.xml',
55         'project/project_view.xml',
56         'project/project_report.xml',
57         'product_view.xml',
58         'account_assert_test.xml',
59         'process/statement_process.xml',
60         'process/customer_invoice_process.xml',
61         'process/supplier_invoice_process.xml',
62         'sequence_view.xml'
63     ],
64     'demo_xml': [
65         'account_demo.xml',
66         'project/project_demo.xml',
67         'project/analytic_account_demo.xml',
68         'demo/account_minimal.xml',
69         'account_unit_test.xml'
70     ],
71     'installable': True,
72     'active': False,
73     'certificate': '0080331923549',
74 }
75 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: