forked from OCA/account-analytic
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path__manifest__.py
35 lines (34 loc) · 1.04 KB
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Copyright 2017 Eficent Business and IT Consulting Services S.L.
# Copyright 2017 Luxim d.o.o.
# Copyright 2017 Matmoz d.o.o.
# Copyright 2017 Deneroteam.
# Copyright 2017 Serpent Consulting Services Pvt. Ltd.
# Copyright 2017 Tecnativa
# Copyright 2018 Brainbean Apps
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
{
'name': 'Account Analytic Parent',
'summary': """
This module reintroduces the hierarchy to the analytic accounts.""",
'version': '12.0.2.0.0',
'license': 'AGPL-3',
'author': 'Matmoz d.o.o., '
'Luxim d.o.o., '
'Deneroteam, '
'Eficent, '
'Tecnativa, '
'Brainbean Apps, '
'Odoo Community Association (OCA)',
'website': 'https://www.github.com/OCA/account-analytic.git',
'depends': [
'account',
'analytic',
],
'data': [
'views/account_analytic_account_view.xml',
],
'demo': [
'data/analytic_account_demo.xml',
],
'post_init_hook': 'post_init_hook',
}