Files
cookiecutter-odoo/{{name}}/__openerp__.py
Valentin Lab 447a85494f fix: use double quotes instead of simple quotes !minor
This is to stick to ``oem`` output, and thus minimize diffs.
2015-05-21 08:56:24 +02:00

32 lines
629 B
Python

# -*- coding: utf-8 -*-
{
"name": "{{name}}",
"version": "{{version}}",
"author": "{{author}}",
"category": "{{category}}",
"complexity": "normal",
{%- if website %}
"website": "{{ website }}",
{%- endif %}
"data": [
"data/templates.xml",
"security/security.xml",
"security/ir.model.access.csv",
"views/view.xml",
"actions/act_window.xml",
"menu.xml",
"data/data.xml",
],
"depends": [
"base",
],
"qweb": [
"static/src/xml/*.xml",
],
"test": [
],
"installable": True,
"auto_install": False,
}