odoo-tutorials/estate/__manifest__.py
2024-07-31 15:15:15 -10:00

20 lines
520 B
Python

# -*- coding: utf-8 -*-
{
'name': 'Real Estate',
'category': 'Tutorials/Estate',
'application': True,
'installable': True,
'author': 'Matt Marcha',
'depends': [
'base',
],
'data': [
'views/estate_property_offer_views.xml',
'views/estate_property_type_views.xml',
'views/estate_property_tag_views.xml',
'views/estate_property_views.xml',
'views/estate_menus_view.xml',
'security/ir.model.access.csv'
],
'license': 'AGPL-3',
}