-
-
Notifications
You must be signed in to change notification settings - Fork 112
/
__manifest__.py
31 lines (30 loc) · 1.12 KB
/
__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
# Copyright 2016 Antonio Espinosa <[email protected]>
# Copyright 2017 David Vidal <[email protected]>
# Copyright 2017 Luis M. Ontalba <[email protected]>
# Copyright 2017-2018 Pedro M. Baeza <[email protected]>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "Membership extension",
"summary": "Improves user experience of membership addon",
"version": "17.0.1.0.3",
"category": "Membership",
"author": "Tecnativa, Onestein, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/vertical-association",
"license": "AGPL-3",
"application": False,
"installable": True,
"depends": ["membership"],
"data": [
"security/membership_security.xml",
"security/ir.model.access.csv",
"views/membership_category_view.xml",
"views/membership_views.xml",
"views/product_template_view.xml",
"views/res_partner_view.xml",
"data/membership_category_data.xml",
],
"demo": [
"demo/membership_category_demo.xml",
"demo/product_template_demo.xml",
],
}