[MODULE] +description
authorLudovic CHEVALIER <ludovic@beurresarrasin.net>
Fri, 30 Nov 2018 15:53:16 +0000 (16:53 +0100)
committerLudovic CHEVALIER <ludovic@beurresarrasin.net>
Fri, 30 Nov 2018 15:53:16 +0000 (16:53 +0100)
__init__.py [new file with mode: 0644]
__openerp__.py [new file with mode: 0644]

diff --git a/__init__.py b/__init__.py
new file mode 100644 (file)
index 0000000..1de6700
--- /dev/null
@@ -0,0 +1,5 @@
+# -*- coding: utf-8 -*-
+# Copyright 2018 Casa Bicicleta
+# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
+
+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
diff --git a/__openerp__.py b/__openerp__.py
new file mode 100644 (file)
index 0000000..e544d71
--- /dev/null
@@ -0,0 +1,31 @@
+# -*- coding: utf-8 -*-
+# Copyright 2018 Casa Bicicleta
+# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
+
+{
+    'name': 'Custom La Casa Bicicleta',
+    'version': '0.1',
+    'category': 'Association',
+    'complexity': "normal",
+    'description': """
+This module is a profile module for La Casa Bicicleta
+=====================================================
+
+It installs the profile for bike co-ops to manage some features like:
+    * …
+    """,
+    'author': 'La Casa Bicicleta',
+    'depends': [
+        'bikecoop',
+        'bikecoop_l10n_fr'
+    ],
+    'init_xml': [
+    ],
+    'update_xml': [
+    ],
+    'installable': True,
+    'auto_install': False,
+    'images': [],
+}
+
+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: