diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 6bbfa76a..6d22a25d 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -11.0.20181124.0 \ No newline at end of file +11.0.20200425.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 729eaeaa..680eaace 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -12,6 +12,7 @@ setuptools.setup( 'odoo11-addon-account_bank_statement_import_move_line', 'odoo11-addon-account_bank_statement_import_mt940_base', 'odoo11-addon-account_bank_statement_import_ofx', + 'odoo11-addon-account_bank_statement_import_online', 'odoo11-addon-account_bank_statement_import_paypal', 'odoo11-addon-account_bank_statement_import_qif', ], diff --git a/setup/account_bank_statement_import_online/odoo/addons/account_bank_statement_import_online b/setup/account_bank_statement_import_online/odoo/addons/account_bank_statement_import_online new file mode 120000 index 00000000..b31ca33c --- /dev/null +++ b/setup/account_bank_statement_import_online/odoo/addons/account_bank_statement_import_online @@ -0,0 +1 @@ +../../../../account_bank_statement_import_online \ No newline at end of file diff --git a/setup/account_bank_statement_import_online/setup.cfg b/setup/account_bank_statement_import_online/setup.cfg new file mode 100644 index 00000000..3c6e79cf --- /dev/null +++ b/setup/account_bank_statement_import_online/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/setup/account_bank_statement_import_online/setup.py b/setup/account_bank_statement_import_online/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/account_bank_statement_import_online/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)