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, +)