-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
36 lines (33 loc) · 887 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
# -*- coding: utf-8 -*-
{
'name': 'Product Video Preview',
'version': '13.0.1.0.1',
'author': 'Leonardo Caballero <leonardo@pidela.cl>',
'license': 'AGPL-3',
'maintainer': 'Leonardo Caballero <leonardo@pidela.cl>',
'support': 'soporte@pidela.cl',
'category': 'Hidden',
'description': """
Product Video Preview
=====================
This module enable a field to enter the URL for a Product video preview. On giving the URL the video can be previewed.
""",
'depends': [
'base',
'web',
'product'
],
'website': 'https://github.com/macagua/product_video_preview/',
'data': [
'views/template.xml',
'views/product_template.xml'
],
"qweb": [
'static/src/xml/product_video.xml'
],
'demo': [],
'images': [
'static/description/icon.png'
],
'installable': True
}