forked from CompassionCH/compassion-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
100 lines (99 loc) · 3.79 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# -*- coding: utf-8 -*-
##############################################################################
#
# ______ Releasing children from poverty _
# / ____/___ ____ ___ ____ ____ ___________(_)___ ____
# / / / __ \/ __ `__ \/ __ \/ __ `/ ___/ ___/ / __ \/ __ \
# / /___/ /_/ / / / / / / /_/ / /_/ (__ |__ ) / /_/ / / / /
# \____/\____/_/ /_/ /_/ .___/\__,_/____/____/_/\____/_/ /_/
# /_/
# in Jesus' name
#
# Copyright (C) 2014-2017 Compassion CH (http://www.compassion.ch)
# @author: Cyril Sester <[email protected]>, Emanuel Cino
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
# pylint: disable=C8101
{
'name': 'Compassion Children',
'version': '10.0.1.0.1',
'category': 'Other',
'author': 'Compassion CH',
'license': 'AGPL-3',
'website': 'http://www.compassion.ch',
'depends': [
'sale',
'mail',
'web_m2x_options',
'web_sheet_full_width', # Allows a better view of childpool
'message_center_compassion',
'advanced_translation'],
'external_dependencies': {
'python': ['enum', 'pyquery']
},
'data': [
'security/sponsorship_groups.xml',
'security/ir.model.access.csv',
'views/child_compassion_view.xml',
'views/field_office_view.xml',
'views/child_holds_view.xml',
'views/global_childpool_view.xml',
'views/project_compassion_view.xml',
'views/gmc_message_view.xml',
'views/compassion_reservation_view.xml',
'views/field_office_disaster_alert_view.xml',
'views/res_config_view.xml',
'views/notification_settings_view.xml',
'views/child_pictures_view.xml',
'views/demand_planning.xml',
'workflow/child_workflow.xml',
'data/validity_checks_cron.xml',
'data/child.hobby.csv',
'data/child.household.duty.csv',
'data/child.project.activity.csv',
'data/child.school.subject.csv',
'data/child.christian.activity.csv',
'data/child.chronic.illness.csv',
'data/child.physical.disability.csv',
'data/child.future.hope.csv',
'data/connect.month.csv',
'data/gmc_action.xml',
'data/compassion.field.office.csv',
'data/global_partner.xml',
'data/lang_data.xml',
'data/icp.involvement.csv',
'data/icp.church.ministry.csv',
'data/icp.program.csv',
'data/demand_planning_cron.xml',
'data/icp.church.facility.csv',
'data/icp.church.utility.csv',
'data/icp.cognitive.activity.csv',
'data/icp.community.occupation.csv',
'data/icp.diet.csv',
'data/icp.lifecycle.reason.csv',
'data/icp.suspension.extension.reason.csv',
'data/icp.mobile.device.csv',
'data/icp.physical.activity.csv',
'data/icp.school.cost.csv',
'data/icp.sociological.activity.csv',
'data/icp.spiritual.activity.csv',
'data/fo.high.risk.csv',
'data/fo.disaster.loss.csv',
],
'demo': [],
'installable': True,
'auto_install': False,
}