From 60828335454b04b4b75e8e2723abd926212a3e4f Mon Sep 17 00:00:00 2001 From: OCA Git Bot Date: Sat, 19 May 2018 05:12:51 +0200 Subject: [PATCH] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + .../odoo/addons/partner_identification | 1 + setup/partner_identification/setup.cfg | 2 ++ setup/partner_identification/setup.py | 6 ++++++ 5 files changed, 11 insertions(+), 1 deletion(-) create mode 120000 setup/partner_identification/odoo/addons/partner_identification create mode 100644 setup/partner_identification/setup.cfg create mode 100644 setup/partner_identification/setup.py diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index a97ecc927..1e348ba47 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -11.0.20180425.0 \ No newline at end of file +11.0.20180519.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index c8e5727ca..52779f083 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -20,6 +20,7 @@ setuptools.setup( 'odoo11-addon-partner_external_map', 'odoo11-addon-partner_fax', 'odoo11-addon-partner_firstname', + 'odoo11-addon-partner_identification', 'odoo11-addon-partner_second_lastname', ], classifiers=[ diff --git a/setup/partner_identification/odoo/addons/partner_identification b/setup/partner_identification/odoo/addons/partner_identification new file mode 120000 index 000000000..120bd579e --- /dev/null +++ b/setup/partner_identification/odoo/addons/partner_identification @@ -0,0 +1 @@ +../../../../partner_identification \ No newline at end of file diff --git a/setup/partner_identification/setup.cfg b/setup/partner_identification/setup.cfg new file mode 100644 index 000000000..3c6e79cf3 --- /dev/null +++ b/setup/partner_identification/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/setup/partner_identification/setup.py b/setup/partner_identification/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/partner_identification/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)