-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy path__manifest__.py
64 lines (64 loc) · 1.76 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
{
'name': 'Surveying & Mapping',
'version': '1.0',
'category': 'Services',
'depends': [
'base_automation',
'crm',
'documents',
'hr_timesheet',
'knowledge',
'planning',
'sale_project',
'web_studio',
'website',
],
'data': [
'data/res_config_settings.xml',
'data/ir_attachment_pre.xml',
'data/base_automation.xml',
'data/ir_actions_server.xml',
'data/project_task_type.xml',
'data/documents_folder.xml',
'data/account_analytic_plan.xml',
'data/account_analytic_account.xml',
'data/project_project.xml',
'data/planning_role.xml',
'data/product_template.xml',
'data/product_product.xml',
'data/sale_order_template.xml',
'data/knowledge_cover.xml',
'data/knowledge_article.xml',
'data/knowledge_article_favorite.xml',
'data/mail_message.xml',
'data/website_view.xml',
'data/knowledge_tour.xml',
],
'demo': [
'demo/res_partner.xml',
'demo/crm_stage.xml',
'demo/crm_lead.xml',
'demo/sale_order.xml',
'demo/planning_slot.xml',
'demo/website_view.xml',
'demo/website_page.xml',
'demo/website_menu.xml',
'demo/website.xml',
'demo/website_theme_apply.xml',
'demo/website_ir_attachment.xml',
],
'license': 'OPL-1',
'assets': {
'web.assets_backend': [
'surveyor/static/src/js/my_tour.js',
]
},
'author': 'Odoo S.A.',
'images': ['images/main.png'],
"cloc_exclude": [
"data/knowledge_article.xml",
"data/website_view.xml",
"static/src/js/my_tour.js",
"demo/website_view.xml",
],
}