diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt new file mode 100644 index 0000000..fb04cab --- /dev/null +++ b/setup/_metapackage/VERSION.txt @@ -0,0 +1 @@ +9.0.20180613.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..75b127a --- /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="odoo9-addons-oca-data-protection", + description="Meta package for oca-data-protection Odoo addons", + version=version, + install_requires=[ + 'odoo9-addon-privacy', + ], + classifiers=[ + 'Programming Language :: Python', + 'Framework :: Odoo', + ] +) diff --git a/setup/privacy/odoo_addons/__init__.py b/setup/privacy/odoo_addons/__init__.py new file mode 100644 index 0000000..de40ea7 --- /dev/null +++ b/setup/privacy/odoo_addons/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/privacy/odoo_addons/privacy b/setup/privacy/odoo_addons/privacy new file mode 120000 index 0000000..99fc99e --- /dev/null +++ b/setup/privacy/odoo_addons/privacy @@ -0,0 +1 @@ +../../../privacy \ No newline at end of file diff --git a/setup/privacy/setup.py b/setup/privacy/setup.py new file mode 100644 index 0000000..28c57bb --- /dev/null +++ b/setup/privacy/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)