diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt new file mode 100644 index 0000000..5d618c2 --- /dev/null +++ b/setup/_metapackage/VERSION.txt @@ -0,0 +1 @@ +12.0.20190623.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py new file mode 100644 index 0000000..03eae86 --- /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="odoo12-addons-oca-stock-logistics-reporting", + description="Meta package for oca-stock-logistics-reporting Odoo addons", + version=version, + install_requires=[ + 'odoo12-addon-stock_picking_comment_template', + ], + classifiers=[ + 'Programming Language :: Python', + 'Framework :: Odoo', + ] +) diff --git a/setup/stock_picking_comment_template/odoo/addons/stock_picking_comment_template b/setup/stock_picking_comment_template/odoo/addons/stock_picking_comment_template new file mode 120000 index 0000000..b248bba --- /dev/null +++ b/setup/stock_picking_comment_template/odoo/addons/stock_picking_comment_template @@ -0,0 +1 @@ +../../../../stock_picking_comment_template \ No newline at end of file diff --git a/setup/stock_picking_comment_template/setup.py b/setup/stock_picking_comment_template/setup.py new file mode 100644 index 0000000..28c57bb --- /dev/null +++ b/setup/stock_picking_comment_template/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)