forked from OCA/storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
26 lines (25 loc) · 885 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
# Copyright 2017 Akretion (http://www.akretion.com).
# @author Sébastien BEAU <sebastien.beau@akretion.com>
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
{
"name": "Storage File",
"summary": "Storage file in storage backend",
"version": "14.0.2.1.0",
"category": "Storage",
"website": "https://github.com/OCA/storage",
"author": " Akretion, Odoo Community Association (OCA)",
"license": "LGPL-3",
"development_status": "Production/Stable",
"application": False,
"installable": True,
"external_dependencies": {"python": ["python_slugify"]},
"depends": ["storage_backend"],
"data": [
"views/storage_file_view.xml",
"views/storage_backend_view.xml",
"security/ir.model.access.csv",
"security/storage_file.xml",
"data/ir_cron.xml",
"data/storage_backend.xml",
],
}