odoo/openerp/addons/test_inherit/__openerp__.py

19 lines
486 B
Python

# -*- coding: utf-8 -*-
{
'name': 'test-inherit',
'version': '0.1',
'category': 'Tests',
'description': """A module to verify the inheritance.""",
'author': 'OpenERP SA',
'maintainer': 'OpenERP SA',
'website': 'http://www.openerp.com',
'depends': ['base'],
'data': [
'ir.model.access.csv',
'demo_data.xml',
],
'installable': True,
'auto_install': False,
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: