-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
36 lines (34 loc) · 881 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
34
35
36
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Whatsapp',
'version': '16.0.1.0.0',
'sequence': 10,
'category': 'Extra Tools',
'summary': """
Odoo Whatsapp Redirect
""",
'description': "Whatsapp Redirect",
'author': 'Abdalrahman Shahrour',
'maintainer': 'Abdalrahman Shahrour',
'website': 'https://www.linkedin.com/in/shahrour/',
'license': 'LGPL-3',
'depends': [
'base',
'web',
'mail'
],
'data': [
],
'assets': {
'mail.assets_discuss_public': [
'odoo_whatsapp_redirect/static/src/components/wa_button/*',
],
'web.assets_backend': [
'odoo_whatsapp_redirect/static/src/components/*/*',
],
},
'demo': [],
'installable': True,
'auto_install': False,
}