odex30_standard/odex30_base/base_odex/__manifest__.py

25 lines
841 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'],
'installable': True,
'auto_install': False,
}