forked from OCA/field-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
33 lines (32 loc) · 897 Bytes
/
__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
# Copyright (C) 2019 Open Source Integrators
# Copyright (C) 2019 Brian McMaster
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': 'Field Service Fleet',
'summary': 'Link Field Service vehicles with Odoo Fleet',
'version': '12.0.1.0.1',
'category': 'Field Service',
'author':
'Brian McMaster, '
'Open Source Integrators, '
'Odoo Community Association (OCA)',
'website': 'https://github.com/OCA/field-service',
'depends': [
'fieldservice_vehicle',
'fleet',
],
'data': [
'views/fsm_vehicle.xml',
'views/fleet_vehicle.xml',
'wizard/fsm_fleet_wizard.xml',
],
'license': 'AGPL-3',
'development_status': 'Beta',
'maintainers': [
'wolfhall',
'max3903',
'brian10048',
],
'pre_init_hook': 'pre_init_hook',
'installable': True,
}