29 lines
864 B
Python
29 lines
864 B
Python
# -*- coding: utf-8 -*-
|
|
##############################################################################
|
|
#
|
|
# (Odex - Extending the base module).
|
|
# Copyright (C) 2017 Expert Co. Ltd. (<http://exp-sa.com>).
|
|
#
|
|
##############################################################################
|
|
{
|
|
'name': 'Odex - Base Module',
|
|
'version': '1.0',
|
|
'author': 'Expert Co. Ltd.',
|
|
'category': 'Odex25-base/Odex-Base25',
|
|
'description': """
|
|
Odex - Extending the base module
|
|
=================================
|
|
Extending the Odoo's base module by adding a cross-apps models e.g. `res.country.city`.
|
|
any new module should depend in this module so that developer can reuse it.
|
|
""",
|
|
'website': 'http://www.exp-sa.com',
|
|
'depends': ['base'],
|
|
|
|
|
|
'data': ['data/category.xml'],
|
|
'qweb': [
|
|
],
|
|
'installable': True,
|
|
'auto_install': False,
|
|
}
|