[ADD] setup.py [ci skip]

This commit is contained in:
OCA Git Bot
2018-04-19 11:50:36 +02:00
parent 09c9a7d73b
commit 1be869b9ff
3 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1 @@
11.0.20180419.0

View File

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

View File

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