[ADD] doc: new documentation, with training tutorials, and new scaffolding
[odoo/odoo.git] / openerp / cli / templates / default / __openerp__.py
1 # -*- coding: utf-8 -*-
2 {
3     'name': "{{ name|snake }}",
4
5     'summary': """
6         Short (1 phrase/line) summary of the module's purpose, used as
7         subtitle on modules listing or apps.openerp.com""",
8
9     'description': """
10         Long description of module's purpose
11     """,
12
13     'author': "Your Company",
14     'website': "http://www.yourcompany.com",
15
16     # Categories can be used to filter modules in modules listing
17     # Check https://github.com/odoo/odoo/blob/master/openerp/addons/base/module/module_data.xml
18     # for the full list
19     'category': 'Uncategorized',
20     'version': '0.1',
21
22     # any module necessary for this one to work correctly
23     'depends': ['base'],
24
25     # always loaded
26     'data': [
27         # 'security/ir.model.access.csv',
28         'templates.xml',
29     ],
30     # only loaded in demonstration mode
31     'demo': [
32         'demo.xml',
33     ],
34 }