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, +)