From b4d0d4962b7295a12be359189ecef2f534830e8b Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Sat, 23 Jun 2018 04:38:08 +0200 Subject: [PATCH] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + setup/account_voucher_killer/odoo/__init__.py | 1 + setup/account_voucher_killer/odoo/addons/__init__.py | 1 + .../odoo/addons/account_voucher_killer | 1 + setup/account_voucher_killer/setup.py | 6 ++++++ 6 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 setup/account_voucher_killer/odoo/__init__.py create mode 100644 setup/account_voucher_killer/odoo/addons/__init__.py create mode 120000 setup/account_voucher_killer/odoo/addons/account_voucher_killer create mode 100644 setup/account_voucher_killer/setup.py diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index bf6139d34eb..3639ab34bf5 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 a479ee60667..71fdb08fe52 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -17,6 +17,7 @@ '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 00000000000..de40ea7ca05 --- /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 00000000000..de40ea7ca05 --- /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 00000000000..a3a3fa7b993 --- /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 00000000000..28c57bb6403 --- /dev/null +++ b/setup/account_voucher_killer/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)