odoo/openerp/cli/scaffold/__openerp__.jinja2

32 lines
714 B
Plaintext
Raw Normal View History

2014-05-28 09:31:00 +00:00
# -*- coding: utf-8 -*-
{
2014-05-30 09:35:28 +00:00
'name': "{{ module }}",
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 <odoo>/addons/base/module/module_data.xml of 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','website'],
2014-05-28 09:31:00 +00:00
'data': [
],
'demo': [
],
2014-05-28 09:31:00 +00:00
'tests': [
],
}