[ADD] setup.py [ci skip]

pull/403/head
OCA Git Bot 2018-04-18 23:01:37 +02:00
parent c999ae548d
commit e7b8c883d2
3 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1 @@
11.0.20180418.0

View File

@ -0,0 +1,2 @@
[bdist_wheel]
universal=1

View File

@ -0,0 +1,20 @@
import setuptools
with open('VERSION.txt', 'r') as f:
version = f.read().strip()
setuptools.setup(
name="odoo11-addons-oca-account-financial-reporting",
description="Meta package for oca-account-financial-reporting Odoo addons",
version=version,
install_requires=[
'odoo11-addon-account_financial_report',
'odoo11-addon-account_tax_balance',
'odoo11-addon-customer_activity_statement',
'odoo11-addon-customer_outstanding_statement',
],
classifiers=[
'Programming Language :: Python',
'Framework :: Odoo',
]
)