From 32f7b2de8f48cdd10ede06f3c5a555f68ddaedfe Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Tue, 15 Jan 2019 15:45:19 +0000 Subject: [PATCH] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + .../odoo/addons/stock_production_lot_warranty | 1 + setup/stock_production_lot_warranty/setup.cfg | 2 ++ setup/stock_production_lot_warranty/setup.py | 6 ++++++ 5 files changed, 11 insertions(+), 1 deletion(-) create mode 120000 setup/stock_production_lot_warranty/odoo/addons/stock_production_lot_warranty create mode 100644 setup/stock_production_lot_warranty/setup.cfg create mode 100644 setup/stock_production_lot_warranty/setup.py diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index e5e8dbea..ed69e8b9 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -11.0.20190114.0 \ No newline at end of file +11.0.20190115.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 9eca4868..bca898e4 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -9,6 +9,7 @@ setuptools.setup( version=version, install_requires=[ 'odoo11-addon-product_warranty', + 'odoo11-addon-stock_production_lot_warranty', ], classifiers=[ 'Programming Language :: Python', diff --git a/setup/stock_production_lot_warranty/odoo/addons/stock_production_lot_warranty b/setup/stock_production_lot_warranty/odoo/addons/stock_production_lot_warranty new file mode 120000 index 00000000..b64b017f --- /dev/null +++ b/setup/stock_production_lot_warranty/odoo/addons/stock_production_lot_warranty @@ -0,0 +1 @@ +../../../../stock_production_lot_warranty \ No newline at end of file diff --git a/setup/stock_production_lot_warranty/setup.cfg b/setup/stock_production_lot_warranty/setup.cfg new file mode 100644 index 00000000..3c6e79cf --- /dev/null +++ b/setup/stock_production_lot_warranty/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/setup/stock_production_lot_warranty/setup.py b/setup/stock_production_lot_warranty/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/stock_production_lot_warranty/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)