diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index bf6139d34..3639ab34b 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -10.0.20180419.0 \ No newline at end of file +10.0.20180623.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index a479ee606..71fdb08fe 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -17,6 +17,7 @@ setuptools.setup( 'odoo10-addon-account_payment_order', 'odoo10-addon-account_payment_partner', 'odoo10-addon-account_payment_sale', + 'odoo10-addon-account_voucher_killer', ], classifiers=[ 'Programming Language :: Python', diff --git a/setup/account_voucher_killer/odoo/__init__.py b/setup/account_voucher_killer/odoo/__init__.py new file mode 100644 index 000000000..de40ea7ca --- /dev/null +++ b/setup/account_voucher_killer/odoo/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/account_voucher_killer/odoo/addons/__init__.py b/setup/account_voucher_killer/odoo/addons/__init__.py new file mode 100644 index 000000000..de40ea7ca --- /dev/null +++ b/setup/account_voucher_killer/odoo/addons/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/account_voucher_killer/odoo/addons/account_voucher_killer b/setup/account_voucher_killer/odoo/addons/account_voucher_killer new file mode 120000 index 000000000..a3a3fa7b9 --- /dev/null +++ b/setup/account_voucher_killer/odoo/addons/account_voucher_killer @@ -0,0 +1 @@ +../../../../account_voucher_killer \ No newline at end of file diff --git a/setup/account_voucher_killer/setup.py b/setup/account_voucher_killer/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/account_voucher_killer/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)