16 lines
400 B
Python
16 lines
400 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
{
|
|
'name': 'Test HTTP',
|
|
'version': '1.0',
|
|
'category': 'Hidden/Tests',
|
|
'description': """A module to test HTTP""",
|
|
'depends': ['base', 'web', 'web_tour', 'mail'],
|
|
'installable': True,
|
|
'data': [
|
|
'data.xml',
|
|
'ir.model.access.csv',
|
|
'views.xml'
|
|
],
|
|
'license': 'LGPL-3',
|
|
}
|