flectra/addons/rating/__manifest__.py

22 lines
476 B
Python

# -*- coding: utf-8 -*-
{
'name': 'Customer Rating',
'author': 'Odoo S.A.',
'version': '1.0',
'category': 'Productivity',
'description': """
This module allows a customer to give rating.
""",
'website': 'http://flectrahq.com',
'depends': [
'mail',
],
'data': [
'views/rating_view.xml',
'views/rating_template.xml',
'security/ir.model.access.csv'
],
'installable': True,
'auto_install': False,
}