From 8d01cfbb9ed4059d0a528c8dd9f9dcd29200a3fc Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Fri, 27 Dec 2019 16:54:50 +0000 Subject: [PATCH] [ADD] setup.py --- setup/.setuptools-odoo-make-default-ignore | 2 ++ setup/README | 2 ++ setup/_metapackage/VERSION.txt | 1 + setup/_metapackage/setup.py | 17 +++++++++++++++++ .../account_reconcile_restrict_partner_mismatch | 1 + .../setup.py | 6 ++++++ 6 files changed, 29 insertions(+) create mode 100644 setup/.setuptools-odoo-make-default-ignore create mode 100644 setup/README create mode 100644 setup/_metapackage/VERSION.txt create mode 100644 setup/_metapackage/setup.py create mode 120000 setup/account_reconcile_restrict_partner_mismatch/odoo/addons/account_reconcile_restrict_partner_mismatch create mode 100644 setup/account_reconcile_restrict_partner_mismatch/setup.py diff --git a/setup/.setuptools-odoo-make-default-ignore b/setup/.setuptools-odoo-make-default-ignore new file mode 100644 index 00000000..207e6153 --- /dev/null +++ b/setup/.setuptools-odoo-make-default-ignore @@ -0,0 +1,2 @@ +# addons listed in this file are ignored by +# setuptools-odoo-make-default (one addon per line) diff --git a/setup/README b/setup/README new file mode 100644 index 00000000..a63d633e --- /dev/null +++ b/setup/README @@ -0,0 +1,2 @@ +To learn more about this directory, please visit +https://pypi.python.org/pypi/setuptools-odoo diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt new file mode 100644 index 00000000..bc66085e --- /dev/null +++ b/setup/_metapackage/VERSION.txt @@ -0,0 +1 @@ +13.0.20191227.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py new file mode 100644 index 00000000..b172dd97 --- /dev/null +++ b/setup/_metapackage/setup.py @@ -0,0 +1,17 @@ +import setuptools + +with open('VERSION.txt', 'r') as f: + version = f.read().strip() + +setuptools.setup( + name="odoo13-addons-oca-account-reconcile", + description="Meta package for oca-account-reconcile Odoo addons", + version=version, + install_requires=[ + 'odoo13-addon-account_reconcile_restrict_partner_mismatch', + ], + classifiers=[ + 'Programming Language :: Python', + 'Framework :: Odoo', + ] +) diff --git a/setup/account_reconcile_restrict_partner_mismatch/odoo/addons/account_reconcile_restrict_partner_mismatch b/setup/account_reconcile_restrict_partner_mismatch/odoo/addons/account_reconcile_restrict_partner_mismatch new file mode 120000 index 00000000..a6e2aa0c --- /dev/null +++ b/setup/account_reconcile_restrict_partner_mismatch/odoo/addons/account_reconcile_restrict_partner_mismatch @@ -0,0 +1 @@ +../../../../account_reconcile_restrict_partner_mismatch \ No newline at end of file diff --git a/setup/account_reconcile_restrict_partner_mismatch/setup.py b/setup/account_reconcile_restrict_partner_mismatch/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/account_reconcile_restrict_partner_mismatch/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)