diff --git a/setup/database_cleanup/odoo/addons/database_cleanup b/setup/database_cleanup/odoo/addons/database_cleanup new file mode 120000 index 000000000..0ff49f9b1 --- /dev/null +++ b/setup/database_cleanup/odoo/addons/database_cleanup @@ -0,0 +1 @@ +../../../../database_cleanup \ No newline at end of file diff --git a/setup/database_cleanup/setup.cfg b/setup/database_cleanup/setup.cfg new file mode 100644 index 000000000..3c6e79cf3 --- /dev/null +++ b/setup/database_cleanup/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/setup/database_cleanup/setup.py b/setup/database_cleanup/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/database_cleanup/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)