Skip to content

Commit dd74758

Browse files
committed
[IMP] Add pyproject.toml files
To support PEP 621 and to be able to install each module separately with python `pip` command, add a pyproject.toml in each module root. That one will rely on `whool` build backend to package individual Odoo addons in an installable one.
1 parent 4ad6fb5 commit dd74758

File tree

8 files changed

+18
-3
lines changed

8 files changed

+18
-3
lines changed

mollie_balance_sync/__manifest__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
{
44
'name': 'Mollie Balance Sync',
5-
'version': '18.0.0.0',
5+
'version': '18.0.0.0.0',
66
'description': '',
77
'summary': 'This module sync balances from mollie',
88
'author': 'Mollie',

mollie_balance_sync/pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["whool"]
3+
build-backend = "whool.buildapi"

mollie_pos_terminal/__manifest__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
'name': 'Mollie Pos Terminal',
3-
'version': '18.0.0.1',
3+
'version': '18.0.0.1.0',
44
'description': '',
55
'summary': 'Connect your pos with mollie terminal',
66
'author': 'Mollie',

mollie_pos_terminal/pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["whool"]
3+
build-backend = "whool.buildapi"
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["whool"]
3+
build-backend = "whool.buildapi"
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["whool"]
3+
build-backend = "whool.buildapi"

payment_mollie_official_fees/__manifest__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
{
44
'name': 'Fees for Mollie Payments Extended',
5-
'version': '18.0.0.0',
5+
'version': '18.0.1.0.0',
66
'category': 'eCommerce',
77
'license': 'LGPL-3',
88
'author': 'Mollie',
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["whool"]
3+
build-backend = "whool.buildapi"

0 commit comments

Comments
 (0)