mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
18 lines
439 B
Python
18 lines
439 B
Python
import setuptools
|
|
|
|
with open('VERSION.txt', 'r') as f:
|
|
version = f.read().strip()
|
|
|
|
setuptools.setup(
|
|
name="odoo13-addons-oca-account-reconcile",
|
|
description="Meta package for oca-account-reconcile Odoo addons",
|
|
version=version,
|
|
install_requires=[
|
|
'odoo13-addon-account_reconcile_restrict_partner_mismatch',
|
|
],
|
|
classifiers=[
|
|
'Programming Language :: Python',
|
|
'Framework :: Odoo',
|
|
]
|
|
)
|