23 lines
515 B
Python
23 lines
515 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': 'Project Rating',
|
|
'author': 'Odoo S.A.',
|
|
'version': '1.0',
|
|
'category': 'Project',
|
|
'description': """
|
|
This module Allows a customer to give rating on Project.
|
|
""",
|
|
'website': 'http://flectra.com',
|
|
'depends': [
|
|
'rating',
|
|
'project'
|
|
],
|
|
'data': [
|
|
'data/project_data.xml',
|
|
'views/res_config_settings_views.xml',
|
|
'views/project_view.xml',
|
|
],
|
|
'demo': ['data/project_demo.xml'],
|
|
'installable': True,
|
|
}
|