[ADD] setup.py

This commit is contained in:
OCA-git-bot
2019-05-04 13:53:06 +00:00
parent 5e6bfab995
commit 0c5c116b26
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import setuptools
with open('VERSION.txt', 'r') as f:
version = f.read().strip()
setuptools.setup(
name="odoo12-addons-oca-bank-statement-import",
description="Meta package for oca-bank-statement-import Odoo addons",
version=version,
install_requires=[
'odoo12-addon-account_bank_statement_import_camt_oca',
],
classifiers=[
'Programming Language :: Python',
'Framework :: Odoo',
]
)