diff --git a/account_move_print/__manifest__.py b/account_move_print/__manifest__.py index 4776eb5ec..b89bef036 100644 --- a/account_move_print/__manifest__.py +++ b/account_move_print/__manifest__.py @@ -2,7 +2,7 @@ # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). { "name": "Account Move Print", - "version": "14.0.1.0.0", + "version": "15.0.1.0.0", "category": "Accounting", "license": "LGPL-3", "summary": "Adds the option to print Journal Entries", diff --git a/setup/account_move_print/odoo/addons/account_move_print b/setup/account_move_print/odoo/addons/account_move_print new file mode 120000 index 000000000..e91fe1689 --- /dev/null +++ b/setup/account_move_print/odoo/addons/account_move_print @@ -0,0 +1 @@ +../../../../account_move_print \ No newline at end of file diff --git a/setup/account_move_print/setup.py b/setup/account_move_print/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/account_move_print/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)