From 08d143a5f6d55f2cb4a8c3a58c12115c4d50c698 Mon Sep 17 00:00:00 2001 From: Fabien BOURGEOIS Date: Thu, 13 Dec 2018 19:11:19 +0100 Subject: [PATCH] [ADD]Yaltik bootstrap on 12.0 --- yaltik_bootstrap/__init__.py | 16 ++++++++++++++++ yaltik_bootstrap/__manifest__.py | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 yaltik_bootstrap/__init__.py create mode 100644 yaltik_bootstrap/__manifest__.py diff --git a/yaltik_bootstrap/__init__.py b/yaltik_bootstrap/__init__.py new file mode 100644 index 0000000..9dd702d --- /dev/null +++ b/yaltik_bootstrap/__init__.py @@ -0,0 +1,16 @@ +# -*- coding: utf-8 -*- + +# 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 . diff --git a/yaltik_bootstrap/__manifest__.py b/yaltik_bootstrap/__manifest__.py new file mode 100644 index 0000000..c5f5aac --- /dev/null +++ b/yaltik_bootstrap/__manifest__.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- + +# 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': 'Yaltik bootstrap', + 'summary': 'Yaltik bootstrap : common dependencies for all projects', + 'description': """ Yaltik bootstrap : common dependencies for all projects : + * addons from OCA : FR localization, debranding ; + * new backend and responsive theme """, + 'version': '12.0.0.1.0', + 'category': 'Yaltik', + 'author': 'Fabien Bourgeois', + 'license': 'AGPL-3', + 'application': False, + 'installable': True, + 'depends': ['l10n_fr', 'l10n_fr_siret', 'l10n_fr_state', 'l10n_fr_department', + 'muk_web_theme'] +}