From 8a47769769330869c7f7294137673470e38a18fe Mon Sep 17 00:00:00 2001 From: Leonardo Donelli Date: Tue, 9 Oct 2018 12:50:30 +0200 Subject: [PATCH] Fix manifest, follow OCA template --- document_type/__manifest__.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/document_type/__manifest__.py b/document_type/__manifest__.py index 1fbc9951..3f391cb8 100644 --- a/document_type/__manifest__.py +++ b/document_type/__manifest__.py @@ -4,10 +4,14 @@ { "name": "Document Types", "version": "10.0.1.0.0", - "author": "MONK Software, Odoo Community Association (OCA)", + "development_status": "Beta", "category": "Knowledge", + "website": "https://github.com/OCA/knowledge", + "author": "MONK Software, Odoo Community Association (OCA)", "license": "AGPL-3", - "website": "https://odoo-community.org/", + "application": False, + "installable": True, + "auto_install": False, "depends": ["document", "knowledge"], "data": [ 'views/document_type.xml', @@ -15,6 +19,4 @@ 'templates/web.xml', 'security/ir.model.access.csv', ], - "installable": True, - "auto_install": False, }