[MODULE] +__openerp__
authorLudovic CHEVALIER <ludovic@beurresarrasin.net>
Wed, 11 May 2022 11:14:48 +0000 (13:14 +0200)
committerLudovic CHEVALIER <ludovic@beurresarrasin.net>
Wed, 11 May 2022 11:14:48 +0000 (13:14 +0200)
__openerp__.py [new file with mode: 0644]

diff --git a/__openerp__.py b/__openerp__.py
new file mode 100644 (file)
index 0000000..8b28bea
--- /dev/null
@@ -0,0 +1,27 @@
+# -*- coding: utf-8 -*-
+# Copyright 2022 L'Heureux Cyclage
+# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
+
+
+{
+    'name': 'Budget module enhancement',
+    'version': '0.1',
+    'category': 'Accounting & Finance',
+    'description': """
+
+Budget module enhancement
+=========================
+- Analytic account is not required to follow the evolution of a budgetary position;
+- …
+    """,
+    'author': 'L\'Heureux Cyclage',
+    'website': 'http://www.heureux-cyclage.org',
+    'depends': [
+        'account_budget',
+    ],
+    'update_xml': [
+    ],
+    'installable': True,
+    'auto_install': False,
+    'images': [],
+}