[ADD] setup.py

This commit is contained in:
OCA-git-bot
2023-02-17 10:01:03 +00:00
parent 00733c7f59
commit 46e1d7a3af
2 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1 @@
16.0.20230217.0

View File

@@ -0,0 +1,18 @@
import setuptools
with open('VERSION.txt', 'r') as f:
version = f.read().strip()
setuptools.setup(
name="odoo-addons-oca-account-reconcile",
description="Meta package for oca-account-reconcile Odoo addons",
version=version,
install_requires=[
'odoo-addon-account_statement_base>=16.0dev,<16.1dev',
],
classifiers=[
'Programming Language :: Python',
'Framework :: Odoo',
'Framework :: Odoo :: 16.0',
]
)