From 1acd5cb33f337b1303423f6a0d1368d4ad110728 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Fri, 9 Nov 2018 15:22:37 +0000 Subject: [PATCH] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 1 + setup/_metapackage/setup.py | 17 +++++++++++++++++ .../odoo/addons/account_fiscal_year | 1 + setup/account_fiscal_year/setup.py | 6 ++++++ 4 files changed, 25 insertions(+) create mode 100644 setup/_metapackage/VERSION.txt create mode 100644 setup/_metapackage/setup.py create mode 120000 setup/account_fiscal_year/odoo/addons/account_fiscal_year create mode 100644 setup/account_fiscal_year/setup.py diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt new file mode 100644 index 000000000..15872c77f --- /dev/null +++ b/setup/_metapackage/VERSION.txt @@ -0,0 +1 @@ +12.0.20181109.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py new file mode 100644 index 000000000..3c54d8976 --- /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-account-financial-tools", + description="Meta package for oca-account-financial-tools Odoo addons", + version=version, + install_requires=[ + 'odoo12-addon-account_fiscal_year', + ], + classifiers=[ + 'Programming Language :: Python', + 'Framework :: Odoo', + ] +) diff --git a/setup/account_fiscal_year/odoo/addons/account_fiscal_year b/setup/account_fiscal_year/odoo/addons/account_fiscal_year new file mode 120000 index 000000000..3b277c5eb --- /dev/null +++ b/setup/account_fiscal_year/odoo/addons/account_fiscal_year @@ -0,0 +1 @@ +../../../../account_fiscal_year \ No newline at end of file diff --git a/setup/account_fiscal_year/setup.py b/setup/account_fiscal_year/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/account_fiscal_year/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)