From 34c2719925f47075269a30ad6a0d34b3e57b6f9f Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Thu, 23 Aug 2018 04:46:20 +0200 Subject: [PATCH] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + setup/contract_section/odoo/addons/contract_section | 1 + setup/contract_section/setup.cfg | 2 ++ setup/contract_section/setup.py | 6 ++++++ 5 files changed, 11 insertions(+), 1 deletion(-) create mode 120000 setup/contract_section/odoo/addons/contract_section create mode 100644 setup/contract_section/setup.cfg create mode 100644 setup/contract_section/setup.py diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 670afba0..ea05d3cc 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -11.0.20180622.0 \ No newline at end of file +11.0.20180823.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 5c21bc31..03f1c725 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -11,6 +11,7 @@ setuptools.setup( 'odoo11-addon-contract', 'odoo11-addon-contract_payment_mode', 'odoo11-addon-contract_sale_invoicing', + 'odoo11-addon-contract_section', 'odoo11-addon-contract_variable_qty_timesheet', 'odoo11-addon-contract_variable_quantity', ], diff --git a/setup/contract_section/odoo/addons/contract_section b/setup/contract_section/odoo/addons/contract_section new file mode 120000 index 00000000..061a20b6 --- /dev/null +++ b/setup/contract_section/odoo/addons/contract_section @@ -0,0 +1 @@ +../../../../contract_section \ No newline at end of file diff --git a/setup/contract_section/setup.cfg b/setup/contract_section/setup.cfg new file mode 100644 index 00000000..3c6e79cf --- /dev/null +++ b/setup/contract_section/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/setup/contract_section/setup.py b/setup/contract_section/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/contract_section/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)