forked from shopinvader/odoo-shopinvader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
24 lines (23 loc) · 840 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
# Rewrite url Base module for OpenERP
# Copyright (C) 2013 Akretion (http://www.akretion.com)
# @author EBII MonsieurB <[email protected]>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Base Url",
"version": "16.0.1.0.3",
"category": "tools",
"license": "AGPL-3",
"summary": "keep history of url for products & categories ",
"author": "Akretion, ACSONE SA/NV",
"website": "https://github.com/shopinvader/odoo-shopinvader",
# any module necessary for this one to work correctly
"depends": ["base", "base_sparse_field_list_support"],
"external_dependencies": {"python": ["python-slugify"]},
"data": [
"views/url_view.xml",
"security/res_groups.xml",
"security/ir.model.access.csv",
],
"url": "",
"installable": True,
}