From 8c58fbb9af8f52420ec7232dc7406803dc80bc40 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Mon, 5 Feb 2024 15:33:37 +0000 Subject: [PATCH] [BOT] post-merge updates --- README.md | 6 +++++- setup/_metapackage/VERSION.txt | 1 + setup/_metapackage/setup.py | 18 ++++++++++++++++++ 3 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 setup/_metapackage/VERSION.txt create mode 100644 setup/_metapackage/setup.py diff --git a/README.md b/README.md index ec5dc9fd59..897b613698 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,11 @@ TODO: add repo description. [//]: # (addons) -This part will be replaced when running the oca-gen-addons-table script from OCA/maintainer-tools. +Available addons +---------------- +addon | version | maintainers | summary +--- | --- | --- | --- +[product_configurator](product_configurator/) | 16.0.1.0.0 | [![PCatinean](https://github.com/PCatinean.png?size=30px)](https://github.com/PCatinean) | Base for product configuration interface modules [//]: # (end addons) diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt new file mode 100644 index 0000000000..280786a330 --- /dev/null +++ b/setup/_metapackage/VERSION.txt @@ -0,0 +1 @@ +16.0.20240205.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py new file mode 100644 index 0000000000..922e35f1c9 --- /dev/null +++ b/setup/_metapackage/setup.py @@ -0,0 +1,18 @@ +import setuptools + +with open('VERSION.txt', 'r') as f: + version = f.read().strip() + +setuptools.setup( + name="odoo-addons-oca-product-configurator", + description="Meta package for oca-product-configurator Odoo addons", + version=version, + install_requires=[ + 'odoo-addon-product_configurator>=16.0dev,<16.1dev', + ], + classifiers=[ + 'Programming Language :: Python', + 'Framework :: Odoo', + 'Framework :: Odoo :: 16.0', + ] +)