From c911fcd7908ee713ac09fcdb8818beb3f732278e Mon Sep 17 00:00:00 2001 From: Thomas Binsfeld Date: Thu, 4 May 2017 11:31:58 +0200 Subject: [PATCH] [ADD] setup for web_timeline --- setup/web_timeline/.eggs/README.txt | 6 ++++++ setup/web_timeline/odoo/__init__.py | 1 + setup/web_timeline/odoo/addons/__init__.py | 1 + setup/web_timeline/odoo/addons/web_timeline | 1 + setup/web_timeline/setup.py | 6 ++++++ 5 files changed, 15 insertions(+) create mode 100644 setup/web_timeline/.eggs/README.txt create mode 100644 setup/web_timeline/odoo/__init__.py create mode 100644 setup/web_timeline/odoo/addons/__init__.py create mode 120000 setup/web_timeline/odoo/addons/web_timeline create mode 100644 setup/web_timeline/setup.py diff --git a/setup/web_timeline/.eggs/README.txt b/setup/web_timeline/.eggs/README.txt new file mode 100644 index 000000000..5d0166882 --- /dev/null +++ b/setup/web_timeline/.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/web_timeline/odoo/__init__.py b/setup/web_timeline/odoo/__init__.py new file mode 100644 index 000000000..de40ea7ca --- /dev/null +++ b/setup/web_timeline/odoo/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/web_timeline/odoo/addons/__init__.py b/setup/web_timeline/odoo/addons/__init__.py new file mode 100644 index 000000000..de40ea7ca --- /dev/null +++ b/setup/web_timeline/odoo/addons/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/web_timeline/odoo/addons/web_timeline b/setup/web_timeline/odoo/addons/web_timeline new file mode 120000 index 000000000..580d87bcd --- /dev/null +++ b/setup/web_timeline/odoo/addons/web_timeline @@ -0,0 +1 @@ +../../../../web_timeline \ No newline at end of file diff --git a/setup/web_timeline/setup.py b/setup/web_timeline/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/web_timeline/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)