forked from MathBenTech/scrummer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path__manifest__.py
56 lines (56 loc) · 1.7 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
# Copyright 2017 - 2018 Modoolar <[email protected]>
# License LGPLv3.0 or later (https://www.gnu.org/licenses/lgpl-3.0.en.html).
{
"name": "Project Agile",
"summary": "Framework for development of agile methodologies",
"category": "Project",
"version": "12.0.2.0.0",
"license": "LGPL-3",
"author": "Modoolar",
"website": "https://www.modoolar.com/",
"depends": [
"web",
"project_key",
"project_workflow",
"hr_timesheet",
"website",
"web_editor",
"project_portal",
"project_task_archiving",
],
"excludes": [
"project_category",
],
"data": [
# security
"security/security.xml",
"security/ir.model.access.csv",
# wizards
"wizards/board_export_wizard.xml",
"wizards/board_import_wizard.xml",
"wizards/board_create_wizard.xml",
"wizards/project_task_worklog_wizard.xml",
"wizards/add_subtask_wizard.xml",
"wizards/add_task_link_wizard.xml",
"wizards/convert_project_task_type_wizard.xml",
"wizards/convert_task_type_wizard.xml",
"wizards/stage_change_confirmation_wizard.xml",
# views
"views/project_project_views.xml",
"views/project_task_views.xml",
"views/project_workflow.xml",
"views/project_agile_team_views.xml",
"views/project_agile_board_views.xml",
"views/project_agile.xml",
# Menus
"views/menu.xml",
# data
"data/project_task.xml",
"data/project_project.xml",
],
"demo": [],
"qweb": ["static/src/xml/*.xml"],
"post_init_hook": "post_init_hook",
"application": False,
"installable": True,
}