summaryrefslogtreecommitdiff
path: root/addons/base_import_module/tests/test_module/__manifest__.py
blob: 690dddd7b500a7575f35aef66454ff27f772c75b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.

{
    'name': 'Test Module',
    'category': 'Website/Website',
    'summary': 'Custom',
    'version': '1.0',
    'description': """
        Test
        """,
    'depends': ['website'],
    'data': [
        'test.xml',
    ],
    'installable': True,
    'application': True,
    'license': 'LGPL-3',
}