From 5b2e212295907a899e065e6ccd4be40e045e0dde Mon Sep 17 00:00:00 2001 From: Thomas Binsfeld Date: Tue, 2 Oct 2018 13:51:53 +0200 Subject: [PATCH] [ADD] Product Brand: setup for 12.0 --- setup/product_brand/.eggs/README.txt | 6 ++++++ setup/product_brand/odoo/addons/product_brand | 1 + setup/product_brand/setup.py | 6 ++++++ 3 files changed, 13 insertions(+) create mode 100644 setup/product_brand/.eggs/README.txt create mode 120000 setup/product_brand/odoo/addons/product_brand create mode 100644 setup/product_brand/setup.py diff --git a/setup/product_brand/.eggs/README.txt b/setup/product_brand/.eggs/README.txt new file mode 100644 index 000000000000..5d01668824f4 --- /dev/null +++ b/setup/product_brand/.eggs/README.txt @@ -0,0 +1,6 @@ +This directory contains eggs that were downloaded by setuptools to build, test, and run plug-ins. + +This directory caches those eggs to prevent repeated downloads. + +However, it is safe to delete this directory. + diff --git a/setup/product_brand/odoo/addons/product_brand b/setup/product_brand/odoo/addons/product_brand new file mode 120000 index 000000000000..705eef2fcdbf --- /dev/null +++ b/setup/product_brand/odoo/addons/product_brand @@ -0,0 +1 @@ +../../../../product_brand \ No newline at end of file diff --git a/setup/product_brand/setup.py b/setup/product_brand/setup.py new file mode 100644 index 000000000000..28c57bb64031 --- /dev/null +++ b/setup/product_brand/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)