From c1116fa129d2d33b8e2fd94fa6009bbda10f639b Mon Sep 17 00:00:00 2001 From: youssef Date: Wed, 19 Sep 2018 13:07:00 +0100 Subject: [PATCH] Create __manifest__ --- .../__manifest__.py | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 golem_activity_limite_registration/__manifest__.py diff --git a/golem_activity_limite_registration/__manifest__.py b/golem_activity_limite_registration/__manifest__.py new file mode 100644 index 0000000..8c0d8ab --- /dev/null +++ b/golem_activity_limite_registration/__manifest__.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- + +# Copyright 2018 Youssef El Ouahby +# Copyright 2018 Fabien Bourgeois +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +{ + 'name': 'GOLEM activity limite registration', + 'summary': 'GOLEM activity limite registration', + 'description': ''' GOLEM activity limite registration ''', + 'version': '10.0.0.0.1', + 'category': 'GOLEM', + 'author': 'Youssef El Ouahby, Fabien Bourgeois', + 'license': 'AGPL-3', + 'application': True, + 'installable': True, + 'depends': ['golem_activity', 'golem_activity_registration'], + 'data': ['views/golem_activity_views.xml'] +}