[ADD] setup.py

This commit is contained in:
OCA-git-bot
2021-10-29 08:32:01 +00:00
parent 83e0716499
commit 73135e3e67
2 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1 @@
15.0.20211029.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-manufacture",
description="Meta package for oca-manufacture Odoo addons",
version=version,
install_requires=[
'odoo-addon-mrp_warehouse_calendar>=15.0dev,<15.1dev',
],
classifiers=[
'Programming Language :: Python',
'Framework :: Odoo',
'Framework :: Odoo :: 15.0',
]
)