diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt new file mode 100644 index 00000000..e5e8dbea --- /dev/null +++ b/setup/_metapackage/VERSION.txt @@ -0,0 +1 @@ +11.0.20190114.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.cfg b/setup/_metapackage/setup.cfg new file mode 100644 index 00000000..3c6e79cf --- /dev/null +++ b/setup/_metapackage/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py new file mode 100644 index 00000000..9eca4868 --- /dev/null +++ b/setup/_metapackage/setup.py @@ -0,0 +1,17 @@ +import setuptools + +with open('VERSION.txt', 'r') as f: + version = f.read().strip() + +setuptools.setup( + name="odoo11-addons-oca-rma", + description="Meta package for oca-rma Odoo addons", + version=version, + install_requires=[ + 'odoo11-addon-product_warranty', + ], + classifiers=[ + 'Programming Language :: Python', + 'Framework :: Odoo', + ] +) diff --git a/setup/product_warranty/odoo/addons/product_warranty b/setup/product_warranty/odoo/addons/product_warranty new file mode 120000 index 00000000..a1e24b0a --- /dev/null +++ b/setup/product_warranty/odoo/addons/product_warranty @@ -0,0 +1 @@ +../../../../product_warranty \ No newline at end of file diff --git a/setup/product_warranty/setup.cfg b/setup/product_warranty/setup.cfg new file mode 100644 index 00000000..3c6e79cf --- /dev/null +++ b/setup/product_warranty/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/setup/product_warranty/setup.py b/setup/product_warranty/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/product_warranty/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)