odoo/openerp/cli/templates/default/__openerp__.py

35 lines
875 B
Python
Raw Normal View History

2014-05-28 09:31:00 +00:00
# -*- coding: utf-8 -*-
{
'name': "{{ name }}",
2014-05-28 09:31:00 +00:00
'summary': """
Short (1 phrase/line) summary of the module's purpose, used as
subtitle on modules listing or apps.openerp.com""",
2014-05-28 09:31:00 +00:00
'description': """
Long description of module's purpose
2014-05-28 09:31:00 +00:00
""",
'author': "Your Company",
'website': "http://www.yourcompany.com",
# Categories can be used to filter modules in modules listing
# Check https://github.com/odoo/odoo/blob/master/openerp/addons/base/module/module_data.xml
# for the full list
2014-05-28 09:31:00 +00:00
'category': 'Uncategorized',
'version': '0.1',
# any module necessary for this one to work correctly
'depends': ['base'],
# always loaded
2014-05-28 09:31:00 +00:00
'data': [
# 'security/ir.model.access.csv',
'templates.xml',
2014-05-28 09:31:00 +00:00
],
# only loaded in demonstration mode
'demo': [
'demo.xml',
2014-05-28 09:31:00 +00:00
],
}