-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path__manifest__.py
More file actions
36 lines (35 loc) · 1.23 KB
/
__manifest__.py
File metadata and controls
36 lines (35 loc) · 1.23 KB
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
# -*- coding: utf-8 -*-
# Copyright 2017 LasLabs Inc.
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
# pylint: disable=C8101
{
'name': 'Infrastructure',
'summary': 'Provides models and methods required for connecting Odoo '
'with infrastructure orchestration systems.',
'version': '10.0.1.0.0',
'category': 'Extra Tools',
'website': 'https://laslabs.com/',
'author': 'LasLabs',
'license': 'LGPL-3',
'application': True,
'installable': True,
'depends': [
'product_uom_technology',
],
'data': [
'security/ir.model.access.csv',
'views/infrastructure_application_view.xml',
'views/infrastructure_environment_view.xml',
'views/infrastructure_host_view.xml',
'views/infrastructure_instance_view.xml',
'views/infrastructure_option_view.xml',
'views/infrastructure_option_system_view.xml',
'views/infrastructure_service_view.xml',
'views/infrastructure_stack_view.xml',
'views/infrastructure_volume_view.xml',
'views/infrastructure_volume_mount_view.xml',
'wizards/infrastructure_application_deploy_view.xml',
# Menu Last
'views/infrastructure_menu.xml',
],
}