-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path__manifest__.py
34 lines (33 loc) · 980 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
# -*- coding: utf-8 -*-
{
"name": "OOVideo",
"author": "Nicolas Martinelli",
"category": "Uncategorized",
"summary": "Video streaming module",
"website": "https://koozic.net/",
"version": "0.1",
"description": """
Video Collection
================
""",
"depends": ["base", "web", "web_tour"],
"data": [
"security/ir.model.access.csv",
"security/oovideo_security.xml",
"views/oovideo_menu_views.xml",
"views/oovideo_config_settings.xml",
"views/oovideo_folder_views.xml",
"views/oovideo_media_views.xml",
"views/oovideo_transcoder_views.xml",
"views/oovideo.xml",
"data/oovideo_folder_data.xml",
"data/oovideo_format_data.xml",
"data/oovideo_transcoder_data.xml",
],
"demo": [],
"qweb": ["static/src/xml/*.xml"],
"installable": True,
"auto_install": True,
"application": True,
"license": "Other OSI approved licence",
}